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

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
dim [2019/05/07 08:42] neilsdim [2019/05/07 08:50] neils
Line 9: Line 9:
 ''DIM'' can 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 uninitialized variable+  rem -- x is now an uninitialized variable 
 +  print x 
 +  rem -- the above will print an undefined number