5 lines
184 B
Text
5 lines
184 B
Text
# use array of array for this
|
|
clothing$[][] = [ [ "type" "t-shirt" ] [ "color" "red" ] [ "size" "xl" ] ]
|
|
for i to len clothing$[][]
|
|
print clothing$[i][1] & ": " & clothing$[i][2]
|
|
.
|