←
CheckAbort
→
Continue
/
Reference of Built-in Symbols
/
Procedural Programming
/
CompoundExpression (
;
)
WMA link
CompoundExpression
[$e_1$, $e_2$, ...]
$e_1$
;
$e_2$
;
...
evaluates its arguments in turn, returning the last result.
a; b; c; d
If the last argument is omitted,
Null
is taken:
a;
←
CheckAbort
→
Continue