DEFINT
Revision as of 06:29, 15 September 2009 by imported>Clippy
The DEFINT statement defines all designated undefined variables AS INTEGER variables instead of the SINGLE type default.
Syntax: 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 DIMensioned as another variable type or that use type suffixes are not defined otherwise.
- Qbasic's IDE may add DEFINT before any new SUB or Function also(you can change or remove them if needed.
- DEFINT allows users to create larger graphical arrays up to the integer limits.
- The maximum value of an Integer variable is from 32767 to -32768.
Examples:
- DEFINT A-Z
- DEFINT A,D,Z
See also: DEFSNG, DEFLNG, DEFDBL