RosettaCodeData/Task/Associative-array-Creation/SNOBOL4/associative-array-creation.sno
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

9 lines
147 B
Text

t = table()
t<"red"> = "#ff0000"
t<"green"> = "#00ff00"
t<"blue"> = "#0000ff"
output = t<"red">
output = t<"blue">
output = t<"green">
end