RosettaCodeData/Task/Arrays/LIL/arrays.lil

10 lines
170 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
# (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