add all libs from standard AIO Launcher kit

This commit is contained in:
Evgeny
2022-06-01 12:05:53 +03:00
parent 2c741f11fb
commit f4847e9f8f
8 changed files with 3513 additions and 5 deletions

10
lib/eval.lua Normal file
View File

@@ -0,0 +1,10 @@
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