Apostrophe - mkilgore/QB64pe GitHub Wiki
The apostrophe is used to tell the compiler to ignore a statement or programmer comment.
- Allows programmer comments or temporary code removal.
- REM can also be used to "comment out" a line.
- QBasic metacommands must be commented either with an apostrophe or REM.
- $INCLUDE requires an apostrophe before and after the included file name.
COLOR 11: PRINT "Print this...." ' PRINT "Don't print this program comment!" |
<span style="color:aqua;">Print this....</span> |
Navigation:
Go to Keyword Reference - Alphabetical
Go to Keyword Reference - By usage
Go to Main WIKI Page