Declaration of Fields
§Declarations of fields (variables) have form ([…] means OPTIONAL)
§ [<modifier(s)>] <type> <name> [= <value>];
§ <modifier(s)> and <type> are described below, <name> is the variable name, and the optional <value> is its initial value; variables used before
§ being assigned a value here or in the code cause an error.
§
§[<attribute>] can precede method declaration (use the square brackets here!)
§
§