There are two kinds of comments in RNPL programs. The first kind must start with a # at the beginning of a line. It continues till the end of the line. The second kind starts with // and ends at the end of the line (just like a C++ comment). The following example illustrates both kinds of comments.
# This is the first kind of comment float A on grid1 // This is the second kind of comment // So is this