General Items (Java/C++/C# Style)
A Jeroo program includes
- whitespace
- comments
- identifiers
Whitespace
Whitespace consists of blank spaces and blank lines. These should be used to help a reader understand the logical organization of the source code.
Comments
Comments are used to provide information to a person who is reading the source code.
- Every comment begins with two slash characters (//), and continues
to the end of the line.
- A comment can appear at the end of a statement,
or on a separate line.
- Comments are ignored by the compiler.
Identifiers
An identifier is a name that a programmer creates for a Jeroo or a method.
- An identifier must begin with a letter, underscore, or currency symbol
- The remaining characters can be letters, digits, underscores, or currency symbols