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