1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-05 19:20:25 +00:00
qb64/internal/help/DEFLNG.txt

24 lines
1.1 KiB
Plaintext

The '''DEFLNG''' statement defines all designated undefined variables AS [[LONG]] variables instead of the [[SINGLE]] type default.
{{PageSyntax}}
:: DEFLNG firstletters
* 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.
* '''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}}