Rename interpretor to interpreter.
[Faustine.git] / interpreter / preprocessor / faust-0.9.47mr3 / examples / rewriting / serial.dsp
diff --git a/interpreter/preprocessor/faust-0.9.47mr3/examples/rewriting/serial.dsp b/interpreter/preprocessor/faust-0.9.47mr3/examples/rewriting/serial.dsp
new file mode 100644 (file)
index 0000000..8f46bfc
--- /dev/null
@@ -0,0 +1,7 @@
+
+// sequences from tuples (parallel -> serial)
+
+serial((x,y))  = serial(x) : serial(y);
+serial(x)      = x;
+
+process                = serial((sin,cos,tan));