1<CsoundSynthesizer>
2<CsOptions>
3; Select audio/midi flags here according to platform
4-odac     ;;;realtime audio out
5;-iadc    ;;;uncomment -iadc if realtime audio input is needed too
6; For Non-realtime ouput leave only the line below:
7; -o oscil.wav -W ;;; for file output any platform
8</CsOptions>
9<CsInstruments>
10
11sr = 44100
12ksmps = 32
13nchnls = 2
140dbfs  = 1
15
16instr 1
17
18kfrq0 oscil 8, 0.25, 1
19ktrig metro 1
20kfrq  samphold kfrq0+8, ktrig
21seed  20120125
22aimp  gausstrig 0.5, kfrq, 0.5, 1
23aenv  filter2 aimp, 1, 1, 0.993, 0.993
24anoi  fractalnoise 0.2, 1.7
25al    = anoi*aenv
26ar    delay al, 0.02
27outs  al, ar
28
29endin
30</CsInstruments>
31<CsScore>
32f1 0 8192 10 1
33i1 0 16
34e
35</CsScore>
36</CsoundSynthesizer>
37