mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
13 lines
125 B
Perl
13 lines
125 B
Perl
|
|
terra foo()
|
|
return 1,2
|
|
end
|
|
|
|
local q = `foo()
|
|
|
|
terra bar()
|
|
return q
|
|
end
|
|
|
|
local test = require("test")
|
|
test.meq({1,2},bar()) |