mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
9 lines
137 B
Perl
9 lines
137 B
Perl
terra foobar()
|
|
var a = { a=3,b=4}
|
|
var b = {a=5,b=6.0}
|
|
b = a
|
|
return a.a
|
|
end
|
|
|
|
local test = require("test")
|
|
test.eq(foobar(),3) |