User Tools

Site Tools


en:anonymousarrays

Differences

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

Link to this comparison view

en:anonymousarrays [2016/01/01 23:08]
admin [Example]
en:anonymousarrays [2020/02/28 10:46]
Line 1: Line 1:
-===== Anonymous Arrays ===== 
-An anonymous array is a set of numeric values or a set of string values, separated by commas, and enclosed in braces {}.  Anonymous array can be used to rapidly assign a group of values to an array.  If the Anonymous array is longer than the dimensioned array then the array will be automatically re-dimensioned ([[redim|Redim]]) to the correct length.\\ 
-\\ 
-Anonymous Arrays can also be used in the [[poly|Poly]], [[sound|Sound]], and [[stamp|Stamp]] statements in place of an array variable. 
-==== Example ==== 
-<code> 
-dim myarray(4) 
-myarray = {1, 2, 3, 4} 
- 
-dim words(1) 
-words = {"how","now","brown","cow"} 
-for n = 0 to words[?]-1 
- print words[n] 
-next n 
-</code> 
  
en/anonymousarrays.txt ยท Last modified: 2020/02/28 10:46 (external edit)