Comments

Fore.NET programs support two forms of comments: single line comments and multiline comments. Single line comments start with the characters // and extend to the end of a line. Multiline comments start with the character { and end with the character }.

Comments do not nest. Characters { and } have no special meaning within single line comments. The characters // and { have no special meaning within multiline comments. Comments are not processed within character and string literals.

Example

//  Single line comment

{  Example
of multiline
comment  }

See also:

Fore.NET Language Guide