10 lines
147 B
Text
10 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
|