Files
aiolauncher_scripts/lib/eval.lua
2022-06-01 12:05:53 +03:00

10 lines
196 B
Lua

math = require "math"
use(math)
function pprint(obj)
if type(obj) == "string" or type(obj) == "number" or type(obj) == "boolean" then
print(obj)
else
print("")
end
end