Files
codecrumbs/example-project/languages/java-lang.java
Bogdan Lyashenko 43451bdaff fix: cc comments
2019-05-14 19:36:20 +02:00

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");
}
}