package primary;

//insert header comments here: Type 'hc' below, followed by 'Ctrl-Space'

/*
Note to coder: 
Hover over any class or method name and in most 
cases, you will get some info about the item. If you click
anywhere in a class/method name and press the F3 function key,
you can read even more details about the item by examining its
source code!
*/

public class Standard_Java_Project_Driver {

	public static void main(String[] args) {
		System.out.println("Hello, Java!");

	}//end method main
}//end class Standard_Java_Project_Driver
