COMMENT
Comments are used in templates for documentation purposes. When processing a template, the Documentor compiler ignores these comments. A comment can contain any printable ASCII character. The comment symbol (double-dash) can appear anywhere a space can, except within a literal string.Comments are preceded by two dashes. The comment symbol can start anywhere in a line, except within a literal string. The Documentor ignores all the characters after the comment symbol until the end of the line.-- This line contains program comments.
-- This is a valid comment line.
a:=a+1; -- This is another comment.
●
●
●
●