Creating Hello World Program:
Here is How You Create Your First Simple Program in Java :
class simple{
public static void main(String args[]){
System.out.println("Hello World");
}
}
This Simple Program will Give You Ouput:
Hello World
------------------------------------------------------------------------------
0 Comments