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

13 lines
176 B
Lua
Raw Normal View History

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