Description

Notice the words 'public class' in purple. A class is a file which contains objects and methods (see descriptions in Basics section). The word public just means that the piece of code can be used in other classes, the other thing which we could have wrote would be private, so that only the class that we are currently in can use the piece of code. ................
................