Arrays and Lists
Arrays
array get : container 1array set : container 1 "apple"variable : fruits { array type : string } { array new : string "apple" "banana" "cherry" }
print : { string format : ("There are {0} fruits.") { array length : fruits } int }
print : { string format : ("The first fruit is {0}.") { array get : fruits 0 } string }Generic Arrays
Lists
Creating Lists
Last updated