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

Wednesday, November 17, 2010

Creating First Java Program

public class HelloJava {

public static void main(String[] args) {

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

}

}

Out put : Hello Java