New directory tree, with preprocessor/ inside interpretor/.
[Faustine.git] / interpretor / faust-0.9.47mr3 / examples / rewriting / fact.dsp
diff --git a/interpretor/faust-0.9.47mr3/examples/rewriting/fact.dsp b/interpretor/faust-0.9.47mr3/examples/rewriting/fact.dsp
deleted file mode 100644 (file)
index 724a83f..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-fact(0) = 1;
-fact(n) = n*fact(n-1);
-process = fact(10);