Underscore: Difference between revisions

From QB64 Phoenix Edition Wiki
Jump to navigation Jump to search
(Created page with "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 > 500 AND x + y < 600 THEN_ :::PRINT x + y * '''Only QB64 keywords can use a leading underscore! Leading underscores are reserved for QB64 procedure names only!''' * The underscore can be anywhere after the code on that line to continue the code to the next line in QB64. * Multiple underscores can be used for the same line of code...")
 
No edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 3: Line 3:




''Usage:'' IF x + y > 500 AND x + y < 600 THEN_            
''Usage:'' IF x + y > 500 AND x + y < 600 THEN_
:::PRINT x + y
:::PRINT x + y


Line 11: Line 11:
* Multiple underscores can be used for the same line of code in QB64 only.
* Multiple underscores can be used for the same line of code in QB64 only.
* Underscores can be used in the middle of variable, sub procedure or [[CONST|constant]] names.
* Underscores can be used in the middle of variable, sub procedure or [[CONST|constant]] names.
* '''The underscore is NOT compatible with Qbasic! The Qbasic IDE will remove or move code with leading underscores!'''
* '''The underscore is NOT compatible with QBasic! The QBasic IDE will remove or move code with leading underscores!'''
* In [[PRINT USING]] an underscore can precede a formatting character to display that character as text in a template [[STRING]].
* In [[PRINT USING]] an underscore can precede a formatting character to display that character as text in a template [[STRING]].




''See also:''
{{PageSeeAlso}}
 
* [[Colon]], [[Comma]], [[Semicolon]]
* [[Colon]], [[Comma]], [[Semicolon]]
* [[IF...THEN]]
* [[IF...THEN]]

Latest revision as of 01:19, 29 January 2023

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 > 500 AND x + y < 600 THEN_

PRINT x + y


  • Only QB64 keywords can use a leading underscore! Leading underscores are reserved for QB64 procedure names only!
  • The underscore can be anywhere after the code on that line to continue the code to the next line in QB64.
  • Multiple underscores can be used for the same line of code in QB64 only.
  • Underscores can be used in the middle of variable, sub procedure or constant names.
  • The underscore is NOT compatible with QBasic! The QBasic IDE will remove or move code with leading underscores!
  • In PRINT USING an underscore can precede a formatting character to display that character as text in a template STRING.


See also



Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link