Comments & Delineation

From TrainzOnline
(Difference between revisions)
Jump to: navigation, search
m (Categories)
m (Add links between language reference pages)
 
Line 1: Line 1:
 +
* [[TrainzScript Language Reference]]
 +
** [[Comments & Delineation]]
 +
** [[TrainzScript Keywords]]
 +
** [[Operators]]
 +
** [[Types]]
 +
<br />
 
==Comments==
 
==Comments==
 
{{MethodHeader|//}}
 
{{MethodHeader|//}}

Latest revision as of 00:08, 29 December 2020


[edit] 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.


[edit] 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.


[edit] Categories

Personal tools