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/DEFLNG.txt
2016-03-18 08:36:04 -03:00

25 lines
1.5 KiB
Plaintext

The '''DEFLNG''' statement defines all designated undefined variables AS [[LONG]] variables instead of the [[SINGLE]] type default.
{{PageSyntax}}
:: '''DEFSTR ''letter'''''[-''range'']
* The variable first letters can be from A-Z or any other range.
* You can also use commas for specific undefined variable first letters.
* Variables [[DIM]]ensioned as another variable type or that use type suffixes are not defined otherwise.
* [[UNSIGNED]] [[LONG]] Integer values from 0 to 4,294,967,295 must use [[_DEFINE]].
* DEFLNG sets the [[type]] of all variable names with the starting letter(s) or letter ranges when encountered in the progression of the program(even in conditional statement blocks not executed and subsequent [[SUB]] procedures).
* '''Qbasic's IDE may add DEF statements before any [[SUB]] or [[FUNCTION]]. QB64(like QB) will change all variable types in subsequent sub-procedures to that default variable type without giving a [[ERROR Codes|"Parameter Type Mismatch"]] warning or adding the proper DEF statement to subsequent procedures! If you do not want that to occur, either remove that DEF statement or add the proper DEF type statements to subsequent procedures. May also affect [[$INCLUDE]] procedures!'''
* '''Warning: Qbasic keyword names cannot be used as numerical variable names with or without the type suffix!'''
''Example:'' DEFLNG F-H, T
''See also:''
* [[DEFINT]], [[DEFSNG]], [[DEFDBL]], [[DEFSTR]]
* [[_DEFINE]]
{{PageNavigation}}