/** The classic "Hello, world!" program */
public class HelloWorld {

    /** Print "Hello, world!" on the standard output. */
    public static void main (String args[]) {
        System.out.print("Hello, world!");
    }

}
