fork download
  1. factorial(0,1).
  2.  
  3. factorial(N,F) :-
  4. N>0,
  5. N1 is N-1,
  6. factorial(N1,F1),
  7. F is N * F1.
  8.  
Success #stdin #stdout 0.02s 6204KB
stdin
5
stdout
Standard output is empty