7 lines
88 B
Text
7 lines
88 B
Text
|
|
procedure main()
|
||
|
|
local t
|
||
|
|
t := table()
|
||
|
|
t["foo"] := "bar"
|
||
|
|
write(t["foo"])
|
||
|
|
end
|