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
f76c587338
transcendental-lisp
/
lisp
/
problem.lisp
4 lines
98 B
Common Lisp
Raw
Blame
History
(
defun
problem
(
n
)
(
cond
(
(
<
n
1
)
nil
)
(
T
(
cons
n
(
problem
(
-
n
1
)
)
)
)
)
)
(
setf
x
(
problem
20000
)
)
Reference in New Issue
View Git Blame
Copy Permalink