repo.or.cz
/
chuck-blob.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
*** empty log message ***
[chuck-blob.git]
/
examples
/
demo1.ck
blob
b5ffe91506737b94584f1313a98d34db5ddd6598
1
0 => int a => int t;
2
1 => int b;
3
15 => int c;
4
5
while( c > 0 )
6
{
7
a + b => t;
8
b => a;
9
t => b => stdout;
10
c - 1 => c;
11
}