Showing posts with label java. Show all posts
Showing posts with label java. Show all posts

Tuesday, 5 January 2021

Java Hello world program

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

}

OUTPUT:
 
Hello world