|
1234567891011 |
- # DIM statement
- DIM stands for data in memory and is used to define variable names within a function
-
- syntax
-
- 10 DIM variable1 as type
- 20 DIM variable1,variable2 as type
-
- type can be any type supported by DVM
-
- Defining a varible initializes a variable to its ZERO value.
|