superlint/.automation/test/lua/lua_good_1.lua

13 lines
173 B
Lua
Raw Normal View History

2020-07-24 13:27:54 -04:00
local embracer = {}
local function helper()
-- NYI wontfix
end
function embracer.embrace(opt)
opt = opt or "default"
return helper(opt.."?")
end
return embracer