Content deleted Content added
ColaEuphoria (talk | contribs) |
ColaEuphoria (talk | contribs) |
||
Line 35:
==Example Code==
FAUST programs define a <code>process</code> function that operates on incoming data. This is analogous to the <code>main</code> function in most programming languages. The following is an example that produces silence:
<source lang=haskell>
process = 0;
</source>
The second example copies the input signal to the output
<source lang=haskell>
process = _;
</source>
Another example
<source lang=haskell>
process = +;
|