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

6 lines
184 B
Plaintext

# 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]
.