summaryrefslogtreecommitdiff
path: root/examples/include.csd
diff options
context:
space:
mode:
Diffstat (limited to 'examples/include.csd')
-rw-r--r--examples/include.csd39
1 files changed, 39 insertions, 0 deletions
diff --git a/examples/include.csd b/examples/include.csd
new file mode 100644
index 0000000..6649db8
--- /dev/null
+++ b/examples/include.csd
@@ -0,0 +1,39 @@
+<CsoundSynthesizer>
+<CsOptions>
+; Select audio/midi flags here according to platform
+; Audio out Audio in
+-odac -iadc ;;;RT audio I/O
+; For Non-realtime ouput leave only the line below:
+; -o include.wav -W ;;; for file output any platform
+</CsOptions>
+<CsInstruments>
+
+sr = 44100
+kr = 4410
+ksmps = 10
+nchnls = 1
+
+; Instrument #1 - a basic oscillator.
+instr 1
+ kamp = 10000
+ kcps = 440
+ ifn = 1
+
+ a1 oscil kamp, kcps, ifn
+ out a1
+endin
+
+
+</CsInstruments>
+<CsScore>
+
+; Include the file for Table #1.
+#include "table1.inc"
+
+; Play Instrument #1 for 2 seconds.
+i 1 0 2
+e
+
+
+</CsScore>
+</CsoundSynthesizer>