Skip to content

Latest commit

 

History

History

01-Helloworld

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Hello World in Java

1. Compile the program

Execute:

$ cd src
$ javac Helloworld.java

The Helloworld.class will be created.

2. Run the program

Execute:

$ java Helloworld

Hello World Java!