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
cat.castile
@
master
—
raw
·
history
·
blame
1
2
3
4
5
6
7
8
fun
main
()
{
c
=
read
(
1
)
;
l
=
0
;
while
(
len
(
c
)
==
1
)
{
l
=
write
(
c
)
;
c
=
read
(
1
)
}
}