Comments

See Also

Each language has its own format for adding comments to programs. Visual FoxPro, C, and C++ have different formats for whole line comments and comments on partial lines.

Visual FoxPro BASIC
* full line

USE  && end of line

NOTE multiline ;
   comment
' comment

Pascal C/C++
{ comment }
// comment

/* multiline
 comment */