Tree @
master
(
Download .tar.gz
)
..
assoc.castile
cat.castile
countdown.castile
deadfish.castile
factorial.castile
hello.castile
linkedlist-ops.castile
linkedlist.castile
simple.castile
tokenizer.castile
typecase-error.castile
typecase.castile
simple.castile
@
master
—
raw
·
history
·
blame
1
2
3
4
5
6
7
8
9
fun main() {
x = 12;
if 4 < 5 {
x = 2 * 3 + 4
} else {
x = 0
}
return x
}