Warning

You're browsing the old v2.x documentation. This version is no longer maintained. Click here to go the v3.x documentation.

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
Next revisionBoth sides next revision
dim [2019/05/07 08:42] – created neilsdim [2019/05/07 08:50] neils
Line 7: Line 7:
 The ''DIM'' directive defines an array. See the [[arrays|Arrays]] page for more information. The ''DIM'' directive defines an array. See the [[arrays|Arrays]] page for more information.
  
-`DIMcan also be used to define a single variable without having to assign a value. For example:+''DIM'' can also be used to define a single variable without having to assign a value. For example:
  
- dim x +  dim x 
- rem ** x is now an uninitalized variable+  rem -- x is now an uninitialized variable 
 +  print x 
 +  rem -- the above will print an undefined number