next | previous | forward | backward | up | top | index | toc | home
Macaulay2 > The Macaulay2 language > operators > ;

; -- statement separator

Description

(e;f;...;g;h) the semicolon can be used for evaluating a sequence of expressions. The value of the sequence is the value of its last expression, unless it is omitted, in which case the value is null.
i1 : (3;4;5)

o1 = 5
i2 : (3;4;5;)

For the programmer

The object ; is a keyword.