Comments & Delineation

From TrainzOnline
(Difference between revisions)
Jump to: navigation, search
m (1 revision)
m (Categories)
Line 27: Line 27:
 
{{MethodHeader|{ };}}
 
{{MethodHeader|{ };}}
 
*Delineates the extent of a class declaration.
 
*Delineates the extent of a class declaration.
 +
 +
 +
=Categories=
 +
[[Category:TrainzScript]]

Revision as of 10:52, 24 April 2019

Comments

//
  • Single line comment, text before the next carriage return will be ignored by the compiler.


/* */
  • Block comment.
  • Text between the two character pairs '/*' and '*/' will be ignored.
  • This convention can be used to temporarily disable the execution of sections of code.
  • Block comment tags cannot be nested but they can enclose single line comments.


Delineation

:
  • Marks the end of a label declaration.
  • see on, switch, case, default, label


;
  • Marks the end of a statement.


{ }
  • Delineates the extent of a compound statement or method declaration.


{ };
  • Delineates the extent of a class declaration.


Categories

Personal tools