Skip to content

Tags: dimp-pl/lip

Tags

factorial_passed

Toggle factorial_passed's commit message
First version where i can calculate primitive recursive functions, su…

…ch as factorial:

(let
   (factorial (lambda (x) (if (= x 0) 1 (* x (factorial (- x 1))))))
   (factorial 5))