projects
/
fur
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added a CPS conversion pass (which currently does not actually convert)
[fur]
/
examples
/
20_arguments.fur
1
def increment(n) do
2
n + 1
3
end
4
5
def add(a, b) do
6
a + b
7
end
8
9
print(increment(41), '\n')
10
print(add(40, 2), '\n')