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/DEFINT.txt

30 lines
1.4 KiB
Plaintext

The '''DEFINT''' statement defines all designated undefined variables AS [[INTEGER]] variables instead of the [[SINGLE]] type default.
{{PageSyntax}}
:: DEFINT firstletters
* The variable first letters can be from A-Z or any other range.
* You can also use commas for specific untyped variable first letters.
* Variables [[DIM]]ensioned as another variable type or that use type suffixes are not defined otherwise.
* DEFINT allows users to create larger graphical arrays up to the integer limits.
* The maximum value of a signed Integer variable is 32767. Minimum is -32768.
* {{KW|UNSIGNED}} Integer values from 0 to 65535. See {{KW|_DEFINE}}
* '''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!'''
''Examples:''
:: DEFINT A-Z
:: DEFINT A-D, Z
:: DEFINT A, I, O
''See also:''
* [[DEFSNG]], [[DEFLNG]], [[DEFDBL]], [[DEFSTR]], [[_DEFINE]]
{{PageNavigation}}