You are on page 1of 1

//HelloWorld is the name of class

class HelloWorld{

//main function started, from where program execution starts.


public static void main(String[] args){

//this is just printing the output


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

}
}

You might also like