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]
/
v2
/
test
/
10.ck
blob
a088d2a22e871d9dc4f25758134cb352d489cbf1
1
// 10.ck : void function
2
3
// the function
4
fun void f()
5
{
6
1 + 2 => int x;
7
}
8
9
// call it
10
f();
11
12
<<<"success">>>;