RosettaCodeData/Task/Associative-array-Creation/Potion/associative-array-creation.potion

9 lines
212 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
mydictionary = (red=0xff0000, green=0x00ff00, blue=0x0000ff)
redblue = "purple"
mydictionary put(redblue, 0xff00ff)
255 == mydictionary("blue")
65280 == mydictionary("green")
16711935 == mydictionary("purple")