Java hello world
C
code posted
created at 16 Feb 17:02, updated at 21 Feb 05:59
Edit
|
Back
1 2 3 4 5 6 7 8 9 |
/** * The HelloWorldApp class implements an application that * simply prints "Hello World!" to standard output. */ class HelloWorldApp { public static void main(String[] args) { System.out.println("Hello World!"); // Display the string. } } |
270 Bytes in 2 ms with coderay