Question: Given the following factorial Lisp function. (defund factorial (N) (Cond ((or (= NO) (-NX)) 1) (t(* N (factorial (- N 1)))))) Write an equivalent LISP

Given the following factorial Lisp function. (defund factorial (N) (Cond ((or (= NO) (-NX)) 1) (t(* N (factorial (- N 1)))))) Write an equivalent LISP function for the above factorial in Tait-recursive form. (No 'set' allowed)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
