hacktoberfest-2018/code/Hello_World_Janitha.java

7 lines
154 B
Java
Raw Permalink Normal View History

2018-10-07 11:50:47 +00:00
public class HelloWorld {
public static void main( String[] args ) {
System.out.println( "Hello World!" );
2018-10-07 11:54:05 +00:00
System.exit( 0 );
2018-10-07 11:50:47 +00:00
}
}