if not table.pack then table.pack = function(...) return { n = select("#", ...), ... } end end if not table.unpack then table.unpack = unpack end local load = load if _VERSION:find("5.1") then load = function(x, n, _, env) local f, e = loadstring(x, n) if not f then return f, e end if env then setfenv(f, env) end return f end end local _select, _unpack, _pack, _error = select, table.unpack, table.pack, error local _libs = {} local print1 print1 = print return print1("lua")