hello-world/java/helloworld.java

6 lines
149 B
Java
Raw Permalink Normal View History

2024-04-04 21:03:48 +00:00
//compiles and runs successfully
class helloworld {
2024-04-04 18:17:26 +00:00
public static void main(String[] args) {
System.out.println("Hello World!");
}
}