hacktoberfest-2018/code/Hello_World_Janitha.java

7 lines
154 B
Java

public class HelloWorld {
public static void main( String[] args ) {
System.out.println( "Hello World!" );
System.exit( 0 );
}
}