|
Continued...
First Java Program
Any program for creating an application in Java must contain a “main” method which is the starting point for the execution of that application.
public class HelloWorld {
public static void main (String[] args){
System.out.println (“Hello World”);
}
}
|