Common Terms

From Macros Wiki
Revision as of 21:18, 29 July 2010 by MikeO (talk | contribs) (New page: Number variable. A variable that can store a single value. For example MyVar = 1.23 String variable. A variable that can store a text string of up to 1000 characters. For example MyVar$ = ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Number variable. A variable that can store a single value. For example MyVar = 1.23 String variable. A variable that can store a text string of up to 1000 characters. For example MyVar$ = "Some Text" Array. A variable that can store more than one value. For Example MyVar(3) = 1.23