//---------------------------------------------------------------------- // Hello.java //---------------------------------------------------------------------- public class Hello { // Write "hello, world\n" to the standard output stream. public static void main(String[] args) { System.out.println("hello, world"); } }