Text which is ignored and used for documentation purposes.
Syntax
## { comment }
// { comment }
/* { comment } */
Notes
comment
|
any text
|
##
|
is used for single line comments which are not preserved when the -e command line option is used.
|
//
|
is used for single line comments which are preserved when the -e command line option is used.
|
/* */
|
is used for comments which can span multiple lines, for comments which can be embedded within a statement and for comments which are preserved when the -e command line option is used.
|
Example
## generated code will be inserted here
#include "gen.inc"
/*
open, process and close file specified in ofile
ofile the file to open
*/
// open file
of = open( ofile )
// process file
of.process( )
// close file
of.close( )
|