projects
/
Faustine.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
724a83f625bda58d7b70c511cec7c53b4c6d0ded
[Faustine.git]
/
interpretor
/
faust-0.9.47mr3
/
examples
/
rewriting
/
fact.dsp
1
fact(0) = 1;
2
fact(n) = n*fact(n-1);
3
process = fact(10);