This website requires JavaScript.
Explore
Help
Register
Sign In
scsh-conservatory
/
scsh-0.5
Watch
1
Star
0
Fork
You've already forked scsh-0.5
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
38ac713c41
scsh-0.5
/
debug
/
fact.scm
9 lines
114 B
Scheme
Raw
Blame
History
; don't copyright this, silly shell script
(
define
(
fact
n
)
(
if
(
=
n
0
)
1
(
*
n
(
fact
(
-
n
1
)
)
)
)
)
Reference in New Issue
View Git Blame
Copy Permalink