RosettaCodeData/Task/Associative-array-Iteration/Potion/associative-array-iteration.potion

5 lines
175 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
mydictionary = (red=0xff0000, green=0x00ff00, blue=0x0000ff)
mydictionary each (key, val): (key, ":", val, "\n") join print.
mydictionary each (key): (key, "\n") join print.