0
Hoe to get it to print hello world
so when you put my class do you put {Hello world or do you do something else?
1 Antwort
+ 3
If you just want to print hello world:-
class MyClass {
public static void main(String[ ] args) {
System.out.println("Hello World");
}
}