mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
12 lines
190 B
Perl
12 lines
190 B
Perl
function mymacro()
|
|
return {`4,`5}
|
|
end
|
|
mymacro = macro(mymacro)
|
|
|
|
local exps = {`2,`3, `mymacro()}
|
|
|
|
terra doit()
|
|
return exps
|
|
end
|
|
local test = require("test")
|
|
test.meq({2,3,4,5},doit()) |