<<< The Basics of a Java Program | Index | Valid Java Identifiers >>> |
All statements end with a semicolon.
Use proper white space indentation.
All blocks start with
{ // the beginning block mark } // the ending block mark
Statements within the braces are referred to as block of code, or statement block.
<<< The Basics of a Java Program | Index | Valid Java Identifiers >>> |