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

4 lines
175 B
Text

mydictionary = (red=0xff0000, green=0x00ff00, blue=0x0000ff)
mydictionary each (key, val): (key, ":", val, "\n") join print.
mydictionary each (key): (key, "\n") join print.