RosettaCodeData/Task/Associative-array-Creation/SNOBOL4/associative-array-creation.sno

10 lines
147 B
Plaintext

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