JavaCompilerCore/resources/bytecode/javFiles/HelloWorld.jav

9 lines
184 B
Plaintext
Raw Normal View History

2023-10-27 13:28:46 +00:00
import java.lang.System;
import java.lang.String;
import java.io.PrintStream;
public class HelloWorld {
2024-03-14 12:50:56 +00:00
public static hello() {
2023-10-27 13:28:46 +00:00
System.out.println("Hello World!");
}
}