12 lines
145 B
OpenEdge ABL
12 lines
145 B
OpenEdge ABL
|
|
main
|
||
|
|
//Fixed-length arrays.
|
||
|
|
f $= array.integer[1]()
|
||
|
|
f[0] $= 2
|
||
|
|
print(f[0])
|
||
|
|
|
||
|
|
//Dynamic arrays.
|
||
|
|
d $= list.integer()
|
||
|
|
d[+] $= 2
|
||
|
|
print(d[1])
|
||
|
|
}
|