8 lines
212 B
Text
8 lines
212 B
Text
mydictionary = (red=0xff0000, green=0x00ff00, blue=0x0000ff)
|
|
|
|
redblue = "purple"
|
|
mydictionary put(redblue, 0xff00ff)
|
|
|
|
255 == mydictionary("blue")
|
|
65280 == mydictionary("green")
|
|
16711935 == mydictionary("purple")
|