I have a small issue, actually this issue has been bugging me since I
started the java programming language.
Overview:
Two classes
First Mian.java (main class)
Second Ball.java (helper class)
Now, both classes are public so the access is not restricted.
The problem:
When i try to compile main clas Main.java and in that class there is
an object Ball (instance of the ball class), compiler gives me err
that this class cannot be found (the Ball class)
How come, both are public, and both are in the same folder.