mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
13 lines
186 B
Perl
13 lines
186 B
Perl
terra scope()
|
|
var a = 4
|
|
var b = 0
|
|
b = b + a
|
|
do
|
|
var a = 5
|
|
b = b + a
|
|
end
|
|
b = b + a
|
|
return b
|
|
end
|
|
local test = require('test')
|
|
test.eq(scope(),13) |