9 lines
170 B
Text
9 lines
170 B
Text
# (not) Arrays, in LIL
|
|
set a [list abc def ghi]
|
|
set b [list 4 5 6]
|
|
print [index $a 0]
|
|
print [index $b 1]
|
|
print [count $a]
|
|
append b [list 7 8 9]
|
|
print [count $b]
|
|
print $b
|