Simplest Java Program

Here we present a very simple Java program.

Simply open this ZIP file and follow the directions in the README file.

For convenience, the source code is also below.

We can learn quite a few things from this simple program.

Code Comments:

General Info:

/*
Greeter.java
Last Modified: 2/5/19
A simple Java class
*/

public class Greeter
{
	public void greet()
	{
		//Print out a greeting to the console
		System.out.println("GREETINGS to you from a simple Java program!!");
	}
}