Comments
You can compare how comment formatting differs between Visual FoxPro and other programming languages. Visual FoxPro, C, and C++ have different formats for whole line comments and comments on partial lines.
Visual FoxPro |
BASIC |
---|---|
* Full line comment. USE && Inline comment. NOTE Multiple-line ; comment |
' Comment |
Pascal |
C/C++ |
---|---|
{ Comment } |
// Comment /* Multiple-line comment */ |