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
/
24_if_statements.fur
1
first_greeting = if true do
2
'Hello, world'
3
else
4
'Goodnight, moon'
5
end
6
7
second_greeting = if false do
8
'Hello, world'
9
else
10
'Goodnight, moon'
11
end
12
13
print(first_greeting, '\n')
14
print(second_greeting, '\n')