create hello world

This commit is contained in:
Janitha133 2018-10-07 17:20:47 +05:30 committed by GitHub
parent 9038400f0f
commit ce54fa707f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

6
code/Hello_World_Janitha Normal file
View File

@ -0,0 +1,6 @@
public class HelloWorld {
public static void main( String[] args ) {
System.out.println( "Hello World!" );
System.exit( 0 ); //success
}
}