1
1
Fork 0
mirror of https://github.com/DualBrain/QB64.git synced 2023-11-19 13:10:13 +00:00
QB64-website/wiki/Apostrophe.md
2022-12-24 19:12:43 -06:00

1.1 KiB

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