RosettaCodeData/Task/Associative-array-Iteration/EasyLang/associative-array-iteration.easy
2023-12-16 21:33:55 -08:00

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