mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
15 lines
163 B
Perl
15 lines
163 B
Perl
|
|
|
|
terra what()
|
|
return " " / 1
|
|
end
|
|
|
|
dostuff = macro(function()
|
|
pcall(what.compile,what)
|
|
return 4
|
|
end)
|
|
|
|
terra foobar()
|
|
return dostuff()
|
|
end
|
|
assert(4 == foobar()) |