Lab 0

Description:
Create a hello world program that is written in Java language.

Code:

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

helloworld

Leave a Reply

Your email address will not be published. Required fields are marked *