mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
16 lines
192 B
Perl
16 lines
192 B
Perl
|
|
|
|
function omgfunc()
|
|
return 2
|
|
end
|
|
|
|
a = global(0)
|
|
|
|
terra foo()
|
|
[quote a = a + 1 end];
|
|
[{quote a = a + 1 end,quote a = a + 1 end}]
|
|
return a
|
|
end
|
|
|
|
local test = require("test")
|
|
test.eq(foo(),3) |