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