1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-05 22:50:23 +00:00
QB64-PE/internal/help/Apostrophe.txt
2021-02-11 08:41:53 -03:00

31 lines
683 B
Plaintext

The '''apostrophe''' is used to tell the compiler to ignore a statement or programmer comment.
{{PageSyntax}}
:: <b>'</b> a program comment
{{PageDescription}}
* Allows programmer comments or temporary code removal.
* [[REM]] can also be used to "comment out" a line.
* QBasic [[Metacommand|metacommand]]s must be commented either with an apostrophe or [[REM]].
* [[$INCLUDE]] requires an apostrophe before and after the included file name.
{{PageExamples}}
{{CodeStart}}
COLOR 11: PRINT "Print this...." ' PRINT "Don't print this program comment!"
{{CodeEnd}}
{{OutputStart}}
{{text|Print this....|aqua}}
{{OutputEnd}}
{{PageSeeAlso}}
* [[REM]]
{{PageNavigation}}