
/*
 * On Jan 6 we discussed computer hardware, VonNeumann architecture, and the compilation and
 * execution process.

 * Below is a simple program that print Hello to the screen.
 * The class name is Jan6, this the program must reside in a file named Jan6.java.

 * We issue the following command to compile the source code.
        javac Jan6.java

 * We issue the following command to run the program.
        java Jan6
 */

class Jan6 {
	public static void main(String[] args) {
		System.out.println("hello");
	}
}


