Go to Start Menu->Programs->Accessories and click on Notepad. This opens up Notepad which is the editor we�ll be using to write your source code for now. Type this code below into Notepad:
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}