11 lines
279 B
Markdown
Raw Normal View History

2021-02-22 17:48:14 +00:00
# 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.