|
|
1.1 root 1: s := "x" ----> "x"
2: s ++:= "x" ----> 'x'
3: s ----> 'x'
4: s := "x" ----> "x"
5: s ++:= "xx" ----> 'x'
6: s ----> 'x'
7: s := "x" ----> "x"
8: s ++:= "X" ----> 'Xx'
9: s ----> 'Xx'
10: s := "x" ----> "x"
11: s ++:= "abc" ----> 'abcx'
12: s ----> 'abcx'
13: s := "x" ----> "x"
14: s --:= "x" ----> ''
15: s ----> ''
16: s := "x" ----> "x"
17: s --:= "xx" ----> ''
18: s ----> ''
19: s := "x" ----> "x"
20: s --:= "X" ----> 'x'
21: s ----> 'x'
22: s := "x" ----> "x"
23: s --:= "abc" ----> 'x'
24: s ----> 'x'
25: s := "x" ----> "x"
26: s **:= "x" ----> 'x'
27: s ----> 'x'
28: s := "x" ----> "x"
29: s **:= "xx" ----> 'x'
30: s ----> 'x'
31: s := "x" ----> "x"
32: s **:= "X" ----> ''
33: s ----> ''
34: s := "x" ----> "x"
35: s **:= "abc" ----> ''
36: s ----> ''
37: Run-time error 102 at line 45 in expr52.icn
38: numeric expected
39: offending value: ""
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.