1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-26 15:35:53 +00:00
QB64-PE/internal/help/Underscore.txt
SMcNeill 6e01fc8dce Altered string compare routines (<,<=,>,>=) so they don't give false results with CHR$(0).
Added new _STRCMP and _STRICMP commands for quick string comparisons.
Cleaned up QB64 to finish removing the QUI (quick user insert) code and folders.
Altered UCASE and LCASE routines to be faster in some situations for us.
2014-09-22 08:19:03 -04:00

21 lines
663 B
Plaintext

An '''underscore''' can be used at the end of a line of code to continue a code line to the next line.
''Usage:'' IF x + y &gt; 500 AND x + y &lt; 600 THEN_
:::PRINT x + y
* The underscore can be anywhere after the code on that line to continue it to the next line.
* Multiple underscores can be used for the same line of code.
* Variables and user defined procedures can use underscores in the middle of the name. Only QB64 keywords can use a leading underscore!
* The underscore is NOT compatible with Qbasic! The Qbasic IDE will remove or hide them.
''See also:''
* [[Colon]], [[Comma]], [[Semicolon]]
* [[IF...THEN]]
{{PageNavigation}}