メインコンテンツまでスキップ
バージョン:25.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

Used in multi-case if statements to end the partial conditional, and to continue it for each case. (Added to SenseTalk in 2.0)

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.