|
|
1.1 root 1: one := [1] ----> list(1)
2: two := [2,2] ----> list(2)
3: x := one ----> list(1)
4: x &:= one ----> list(1)
5: x ----> list(1)
6: x := one ----> list(1)
7: x &:= two ----> list(2)
8: x ----> list(2)
9: x := one ----> list(1)
10: x |||:= one ----> list(2)
11: x ----> list(2)
12: x := one ----> list(1)
13: x |||:= two ----> list(3)
14: x ----> list(3)
15: x := one ----> list(1)
16: x ===:= one ----> list(1)
17: x ----> list(1)
18: x := one ----> list(1)
19: x ===:= two ----> none
20: x ----> list(1)
21: x := one ----> list(1)
22: x ~===:= one ----> none
23: x ----> list(1)
24: x := one ----> list(1)
25: x ~===:= two ----> list(2)
26: x ----> list(2)
27: Run-time error 102 at line 35 in expr16.icn
28: numeric expected
29: offending value: [2,2]
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.