This website requires JavaScript.
Explore
Help
Sign In
elf
/
lang_in_20
Watch
1
Star
0
Fork
You've already forked lang_in_20
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
6d96163d9f
lang_in_20
/
test.scm
8 lines
93 B
Scheme
Raw
Blame
History
(
define
fact
(
lambda
(
x
)
(
if
(
==
x
1
)
1
(
*
x
(
fact
(
-
x
1
)
)
)
)
)
)
(
fact
6
)
Reference in New Issue
View Git Blame
Copy Permalink