RosettaCodeData/Task/Associative-array-Iteration/EasyLang/associative-array-iteration.easy

6 lines
184 B
Text
Raw Permalink Normal View History

2023-12-16 21:33:55 -08:00
# 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]
2023-07-01 11:58:00 -04:00
.