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
b47abbaad5
transcendental-lisp
/
lisp
/
random
/
fact.lisp
4 lines
59 B
Common Lisp
Raw
Blame
History
(
defun
fact
(
x
)
(
if
(
<
x
2
)
1
(
*
x
(
fact
(
-
x
1
)
)
)
)
)
Reference in New Issue
View Git Blame
Copy Permalink