|
|
1.1 root 1: a := [1,2,3,4,5,6,7,8] ----> list(8)
2: a1 := a[2:4] ----> list(2)
3: a2 := a[7:2] ----> list(5)
4: a3 := a[2+:3] ----> list(3)
5: a4 := a[-1-:3] ----> list(3)
6: a1[1] ----> 2
7: a2[1] ----> 2
8: a3[1] ----> 2
9: a4[1] ----> 5
10: a4[1] := a ----> list(8)
11: Run-time error 111 at line 19 in expr41.icn
12: variable expected
13: offending value: [1,2]
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.