8 lines
88 B
Lua
8 lines
88 B
Lua
local M = {}
|
|
|
|
function M.printl(fmt, ...)
|
|
print(string.format(fmt, ...))
|
|
end
|
|
|
|
return M
|