Files
hacktoberfest-2018/code/Hello_World_Janitha

7 lines
163 B
Plaintext
Raw Normal View History

2018-10-07 17:20:47 +05:30
public class HelloWorld {
public static void main( String[] args ) {
System.out.println( "Hello World!" );
System.exit( 0 ); //success
}
}