forked from JavaTX/JavaCompilerCore
9 lines
177 B
Plaintext
9 lines
177 B
Plaintext
|
import java.lang.System;
|
||
|
import java.lang.String;
|
||
|
import java.io.PrintStream;
|
||
|
|
||
|
public class HelloWorld {
|
||
|
static hello() {
|
||
|
System.out.println("Hello World!");
|
||
|
}
|
||
|
}
|