mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
10 lines
135 B
Perl
10 lines
135 B
Perl
|
|
|
|
local fn = terra() return 0 end
|
|
|
|
for i = 1,10 do
|
|
fn = terra() return fn() + 1 end
|
|
end
|
|
|
|
local test = require("test")
|
|
test.eq(fn(),10) |