0
34
llucycodes42
The class keyword indicates that the following is a class. Inside of the class, there is a code block that contains the class declaration. This code block tells the interpreter that this class exists and provides some basic information about the class.
Shortcut: class
public class MyClass
{
}