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
/
44.ck
blob
94465a7730bc4de62f0ec4d23025c4e84c85adb9
1
// 44.ck : crash?
2
3
fun void crash( string crashstr )
4
{
5
<<<crashstr>>>;
6
"crash!" @=> crashstr;
7
}
8
9
10
"23" @=> string s;
11
12
//string s;
13
//"1" => s;
14
15
//<<<s>>>;
16
//<<<s.length()>>>;
17
18
string a;
19
20
s => a;
21
22
crash( a );
23
24
<<<a>>>;