INTEGER Type

Previous  Next

 

DIM var-name AS INTEGER

 


 

Declares a variable of type INTEGER.  This is the same as a 32bit int variable in C/C++.

 

Example:

 

DIM age AS INTEGER

DIM who AS STRING

who = "Kalle"

age=93

PRINT who;" is ";age;" years old",