Include a header file required for build on mac 10.4
[supercollider.git] / Help / Language / Expression-Sequence.html
blob54319fba3962266cc0fef7cd5cbf73ca888c8f6c
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5 <meta http-equiv="Content-Style-Type" content="text/css">
6 <title></title>
7 <meta name="Generator" content="Cocoa HTML Writer">
8 <meta name="CocoaVersion" content="824.42">
9 <style type="text/css">
10 p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 18.0px Helvetica}
11 p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica; min-height: 14.0px}
12 p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica}
13 p.p4 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Monaco; color: #a71e12}
14 span.s1 {color: #000000}
15 span.s2 {font: 12.0px Monaco}
16 span.Apple-tab-span {white-space:pre}
17 </style>
18 </head>
19 <body>
20 <p class="p1"><b>Expression Sequence</b></p>
21 <p class="p2"><br></p>
22 <p class="p3">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.</p>
23 <p class="p2"><br></p>
24 <p class="p4"><span class="s1">max( b = a * 2; b + 5,<span class="Apple-converted-space">  </span>10);<span class="Apple-tab-span"> </span></span>// computes the maximum of b+5 and 10</p>
25 <p class="p2"><br></p>
26 <p class="p3">In the above example, the sequence: <span class="s2">b = a * 2; b + 5 </span>acts as a single expression for the first argument to<span class="s2"> max()</span>.</p>
27 <p class="p2"><br></p>
28 </body>
29 </html>