1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-05 21:40:25 +00:00
QB64-PE/internal/help/Apostrophe.txt

23 lines
645 B
Plaintext

The '''apostrophe''' is used to tell Qbasic to ignore a statement or programmer comment.
''Usage:'' COLOR 11: PRINT "Print this...." ' PRINT "Don't print this program comment!"
{{OutputStart}}
{{text|Print this....|aqua}}
{{OutputEnd}}
* Allows programmer comments or temporary code removal.
* [[REM]] can also be used to "comment out" a line.
* [[Metacommand]]s require that they are commented either with an apostrophe or [[REM]].
* [[$INCLUDE]] requires a "comment" apostrophe before and after the included file name also.
''See also:''
* [[Comma]], [[Semicolon]]
* [[REM]]
{{PageNavigation}}