Wednesday 27 December 2017

1.2 - First program in Java

Download JDK (Java Development Kit from oracle official website)


NOTE : Start working in Notepad . It will help you to memorize the syntax easily.

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


No comments:

Post a Comment