mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
17 lines
162 B
Perl
17 lines
162 B
Perl
|
|
a = global(int) --testing variable with no initializer
|
|
|
|
|
|
terra foo()
|
|
a = 3
|
|
end
|
|
|
|
terra bar()
|
|
return a
|
|
end
|
|
|
|
|
|
local test = require("test")
|
|
|
|
foo()
|
|
test.eq(bar(),3) |