superlint/test/linters/lua/lua_good_1.lua

13 lines
176 B
Lua
Raw Normal View History

local embracer = {}
local function helper()
-- NYI wontfix
end
function embracer.embrace(opt)
opt = opt or "default"
return helper(opt.."?")
end
return embracer