added quamol ref
[lectures/latex.git] / computational_physics / fak1.c
1 int fak(n) {
2     if(n==1) return 1;
3     else return n*fak(n-1);
4 }