| 123456789101112131415161718192021222324252627282930313233 |
- print(getAllocations())
- a = array(5)
- print(getAllocations())
- a[0] = 5
- a[1] = 20
- a[2] = 40
- a[3] = 60
- a[4] = 80
- for i = 0 to 4
- print(a[i])
- end
- b = array(7)
- print(getAllocations())
- c = array(7)
- print(getAllocations())
- for i = 0 to 40
- a = array(5)
- end
- print(getAllocations())
- d = array(5)
- print(getAllocations())
- d[0] = array(3)
- d[1] = array(4)
- d[2] = d
- print(d)
- print(getAllocations())
- d = 5
- print(getAllocations())
|