Difference between revisions of "A Recital Primer"
From Recital Documentation Wiki
Barrymavin (Talk | contribs) |
Barrymavin (Talk | contribs) (→Multi line comments) |
||
Line 10: | Line 10: | ||
====Single line comments==== | ====Single line comments==== | ||
====Multi line comments==== | ====Multi line comments==== | ||
+ | |||
+ | The /* */ denote block comments. These can be inserted in programs to enhance their readability and maintainability. | ||
+ | |||
+ | The /* denotes the start of the comment block, the */ the end of the comment block. | ||
+ | |||
+ | All characters between the two comment block delimiters are treated as comments and ignored by Recital. | ||
===Data Types=== | ===Data Types=== |
Revision as of 00:36, 25 October 2009
Contents
A Recital Primer
Lexical Structure
Keywords
Lines and Indentation
Comments
Single line comments
Multi line comments
The /* */ denote block comments. These can be inserted in programs to enhance their readability and maintainability.
The /* denotes the start of the comment block, the */ the end of the comment block.
All characters between the two comment block delimiters are treated as comments and ignored by Recital.