10 lines
206 B
Java
10 lines
206 B
Java
public class HelloWorld {
|
|
|
|
//cc: main function
|
|
public static void main(String[] args) {
|
|
// Prints "Hello, World" to the terminal window.
|
|
System.out.println("Hello, World");
|
|
}
|
|
|
|
}
|