Create a new file in your text editor or IDE named HelloWorld.java. Then paste this code block into the file and save:
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
Run live on Ideone
Note: For Java to r...