Guide to Object-oriented Programming With Java (Buffalo State University Version)
Useful Links, Tips & Resources
Naming Java Classes and Files
The first line of every .java program must be a package line.
For this course, this should be:
package edu.buffalostate.cis425.sp24.put-your-username-here;
package name should be lowercase put-your-username-here
All .java files and class names must begin with a CAPITAL LETTER.
Class names should be the same as the .java filename.