This commit is contained in:
2025-11-28 15:56:49 -05:00
parent e2d31aa734
commit 705911ac9d
21 changed files with 791 additions and 480 deletions

7
core/log.lua Normal file
View File

@@ -0,0 +1,7 @@
local M = {}
function M.printl(fmt, ...)
print(string.format(fmt, ...))
end
return M