RosettaCodeData/Task/Associative-array-Iteration/Frink/associative-array-iteration.frink
2023-07-01 13:44:08 -04:00

7 lines
135 B
Text

d = new dict[[[1, "one"], [2, "two"]]]
for [key, value] = d
println["$key\t$value"]
println[]
for key = keys[d]
println["$key"]