Java_compiler_test/HelloWorld.java

11 lines
176 B
Java
Raw Normal View History

2024-12-16 03:12:56 +00:00
public class HelloWorld {
public static void main(String[] args) {
2024-12-18 03:22:44 +00:00
System.out.println("Hello World!");
2024-12-18 16:12:11 +00:00
System.out.println("Author by fly6516");
2024-12-18 03:22:44 +00:00
}
2024-12-16 03:12:56 +00:00
}