Skip to main content
Version: 26.3

... (ellipsis)

Ellipsis (either as 3 dots, or as a single ellipsis character: )

Used to Assign Remaining Values as a List

Example:

put [1,2,3,4,5] into [a, b, c…]
put c --> [3,4,5]

Use in Multi-Case if Statements

(Added in SenseTalk 2.0)

Used in multi-case if statements to end the partial conditional, and to continue it for each case.

Example:

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 terms in the SenseTalk Dictionary:



note

This page is under construction: it has not been reviewed for completeness.