clookid
203.***.***.***Statements
StatementsAll statements end with a ;
Whitespace is ignored, so you can stack several commands on one line, as long as you end every statement with a ;
Single line comments begin with // and finish at the end of the line
Multiple line comments begin with /* and end with */
You can group operations in brackets ( ) to make them more readable to humans. In fact it's highly recommended anyway so you know exactly what's going to happen when you run the code.