mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
14 lines
129 B
Perl
14 lines
129 B
Perl
|
|
|
|
foo = macro(function()
|
|
local terra bar()
|
|
return 3
|
|
end
|
|
return bar
|
|
end)
|
|
|
|
terra baz()
|
|
return foo()()
|
|
end
|
|
|
|
assert(baz() == 3) |