microJ3 Parser
Parse
R(n) { if(n == 0) { return 1; } return n*R(n-1); } yazdir(){ var n; read n; print R(n); }