3.2.5 Comments |
/*
and ends with the symbol */
.
Comments may contain any number of characters and are always treated as
white space. Comments may be nested and may span several lines.
//
or --
up to the end of a line is
also considered comment.
Example |
// This is a line comment Print 1+1; -- a command followed by a comment 2 ------------------------------- /* example of /* nested */ comment */ |