Hello all, java noob here.
Now I'm going through the book and it is going well so far, however, one thing I just don't understand is how to create an object.

For example, say I want to make an object about squares.

The syntax would be,

Squares squares = new Squares();

correct?

When I make a program with this format, I will get error messages saying
cannot find symbol
symbol: class Squares
location: class (whatever the class would be)

Note this isn't an actual example from a program I have written, just an example I made up with the same error messages.