hello-world/java/helloworld.java

5 lines
116 B
Java
Raw Normal View History

2024-04-04 18:17:26 +00:00
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}