This website requires JavaScript.
Explore
Help
Sign In
mike
/
transcendental-lisp
Watch
1
Star
1
Fork
You've already forked transcendental-lisp
0
Code
Issues
10
Pull Requests
Packages
Projects
Releases
Wiki
Activity
013707e11a
transcendental-lisp
/
lisp
/
fact.lisp
4 lines
71 B
Common Lisp
Raw
Blame
History
(
defun
fact
(
x
)
(
cond
(
(
>
2
x
)
1
)
(
t
(
*
x
(
fact
(
-
x
1
)
)
)
)
)
)
Reference in New Issue
View Git Blame
Copy Permalink