symbol_elipsis
-
ellipsis (either as 3 dots, or as a single ellipsis character: …)
-
used to assign remaining values as a list +
put [1,2,3,4,5] into [a, b, c…]
put c --> [3,4,5] -
used in multi-case if statements to end the partial conditional, and to continue it for each case
-
new in 2.0
-
Examples: +
if age ...
... is less than 13 then set category to "child"
... is between 13 and 19 then set category to "teen"
... is at least 20 then set category to "adult"
end if -
Related: if
-