REM: Difference between revisions
Jump to navigation
Jump to search
Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link
No edit summary |
No edit summary |
||
Line 8: | Line 8: | ||
{{PageDescription}} | {{PageDescription}} | ||
* Comments cannot be read by QBasic correctly and may cause syntax and other errors without REM! | * Comments cannot be read by QBasic correctly and may cause syntax and other errors without REM! | ||
* Instead of REM you can use the | * Instead of REM you can use the [[REM|']] symbol which can be put anywhere. | ||
* Code can also be commented out for program testing purposes. | * Code can also be commented out for program testing purposes. | ||
* QBasic Metacommands such as | * QBasic Metacommands such as [[$DYNAMIC]] and [[$INCLUDE]] require the use of REM or the apostrophe. | ||
Line 25: | Line 25: | ||
{{PageSeeAlso}} | {{PageSeeAlso}} | ||
* [[Apostrophe]] | * [[Apostrophe]] | ||
* | * [[$DYNAMIC]], [[$STATIC]], [[$INCLUDE|$INCLUDE:]] | ||
{{PageNavigation}} | {{PageNavigation}} |
Revision as of 00:53, 25 January 2023
REM or an apostrophe is used for programmer remarks, comments or to stop the execution of program code.
Syntax
- REM program comment or ignore code
Description
- Comments cannot be read by QBasic correctly and may cause syntax and other errors without REM!
- Instead of REM you can use the ' symbol which can be put anywhere.
- Code can also be commented out for program testing purposes.
- QBasic Metacommands such as $DYNAMIC and $INCLUDE require the use of REM or the apostrophe.
Example: Avoiding an END IF error.
REM This is a remark... ' This is also a remark... IF a = 0 THEN REM (REM follows syntax rules) IF a = 0 THEN '(apostrophe doesn't follow syntax rules, so use END IF after this) END IF |
See also