Apostrophe - QB64Official/qb64 GitHub Wiki

The apostrophe allows explanatory comments, or remarks, to be inserted in a program. These may be included anywhere in the source code and extend to the end of the line. Comments are ignored when the program is run.

Syntax

apostrophe this is a comment REM this is also a comment

Description

  • REM can also be used to insert comments but may only be used as the last, or only, statement on a line.
  • QBasic metacommands like $INCLUDE must be included in a comment using either REM or apostrophe.
  • Apostrophe comments, unavailable in earlier dialects of the BASIC language, are now generally favored over REM statements for their greater flexibility.
  • Comments are also useful for disabling code for program testing and debugging purposes.

Example(s)


COLOR 11: PRINT "Print this...." ' PRINT "Don't print this program comment!"


Print this....

See Also