mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
14 lines
155 B
Perl
14 lines
155 B
Perl
|
|
|
|
function omgfunc()
|
|
return 4
|
|
end
|
|
|
|
local what = `[ {2,3} ]
|
|
terra foo()
|
|
return [{3,`[ {2,3} ]}]
|
|
end
|
|
|
|
local test = require("test")
|
|
test.meq({3,2,3},foo())
|