Bug fixed for unix error "readlink /proc/self/fd/0" on MacOS.
[Faustine.git] / interpreter / preprocessor / faust-0.9.47mr3 / examples / rewriting / fact.dsp
1 fact(0) = 1;
2 fact(n) = n*fact(n-1);
3 process = fact(10);