Hello World!
Click to expand...
import static java.lang.System.out;
public class Hello {
public static void main(String... args) {
var msg = "Hello World!";
out.println(msg);
}
}
68 views
Search for a command to run...
Click to expand...
import static java.lang.System.out;
public class Hello {
public static void main(String... args) {
var msg = "Hello World!";
out.println(msg);
}
}
No comments yet. Be the first to comment.