JAVA Program Demonstrate Hello World

Introduction


This program helps to demonstrate the Hello World Program.
Please find the code and video below –


package com.knowledgewala.assignments;

/**
 * This class helps to print Hello World String.
 * 
 * @author dknitk
 *
 */
public class KWHelloWorld {

	/**
	 * This method helps to execute the java program.
	 * 
	 * @param args
	 */
	public static void main(String[] args) {

		System.out.println("Hello World!");
	}

}


Output


Hello World!


One thought on “JAVA Program Demonstrate Hello World”

Leave a Reply

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