superlint/.automation/test/lua/lua_good_1.lua
2020-07-24 11:34:52 -07:00

12 lines
173 B
Lua

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