mirror of
https://github.com/c0de-archive/hacktoberfest-2018.git
synced 2025-02-02 02:46:30 +00:00
7 lines
163 B
Plaintext
7 lines
163 B
Plaintext
public class HelloWorld {
|
|
public static void main( String[] args ) {
|
|
System.out.println( "Hello World!" );
|
|
System.exit( 0 ); //success
|
|
}
|
|
}
|