1 2 3 4 5 | let rec factorielle = function 0 -> 1 | n -> n * factorielle (n - 1) ;; factorielle(4) |
bGV0IHJlYyBmYWN0b3JpZWxsZSA9IGZ1bmN0aW9uCiAgMCAtPiAxCnwgbiAtPiBuICogZmFjdG9yaWVsbGUgKG4gLSAxKSA7OwoKZmFjdG9yaWVsbGUoNCk=
-
upload with new input
-
result: Success time: 0s memory: 2780 kB returned value: 0
factorielle(4)
-
result: Success time: 0s memory: 2780 kB returned value: 0



