This website requires JavaScript.
Explore
Help
Register
Sign In
conservatory
/
picrin
Watch
4
Star
0
Fork
You've already forked picrin
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
3266ae7d3c
picrin
/
t
/
tailcall.scm
7 lines
102 B
Scheme
Raw
Blame
History
(
define
(
sum
k
acc
)
(
if
(
zero?
k
)
acc
(
sum
(
-
k
1
)
(
+
k
acc
)
)
)
)
(
display
(
sum
1000
0
)
)
Reference in New Issue
View Git Blame
Copy Permalink