CheckBadValues should run on the first sample as well
[supercollider.git] / HelpSource / Reference / Expression-Sequence.schelp
blob2ab05a08e9af46b8c2072bdccb9ca5302af84a48
1 title:: Expression Sequence
2 summary:: sequence of expressions
3 categories:: Language
5 A sequence of expressions separated by semicolons and optionally terminated by a semicolon are a single expression whose value is the value of the last expression. Such a sequence may be used anywhere that a normal expression may be used.
6 code::
7 max( b = a * 2; b + 5,  10);    // computes the maximum of b+5 and 10
8 ::
9 In the above example, the sequence: code:: b = a * 2; b + 5 :: acts as a single expression for the first argument to code::max()::.