Pages

Showing posts with label hello world. Show all posts
Showing posts with label hello world. Show all posts

Wednesday, May 25, 2011

Hello World Program!!!!!!

This is my first Java program. This program prints "Hello...World" in the console.

import acm.program.*;
public class jav extends ConsoleProgram
{
public void run()
{
println("Hello...World");
}
}