mirror of
https://github.com/wxd-gaming/test-all.git
synced 2026-05-08 06:28:01 +08:00
31 lines
688 B
Lua
31 lines
688 B
Lua
---
|
|
--- Generated by EmmyLua(https://github.com/EmmyLua)
|
|
--- Created by admin.
|
|
--- DateTime: 2024/8/19 09:49
|
|
---
|
|
---
|
|
function errFunc(error)
|
|
print("\n==============\nerrFunc - " .. debug.traceback(error) .. "\n==============\n")
|
|
end
|
|
|
|
function t1(str)
|
|
print(str, type(str))
|
|
local num = 99999999999999999
|
|
print(num)
|
|
--print(1 << 2)
|
|
local time = os.time()
|
|
print(type(time) .. " - " .. tostring(time))
|
|
--print(type(time) + num .. tostring(time))
|
|
--print(debug.traceback())
|
|
--print(str + num)
|
|
return str
|
|
end
|
|
|
|
--local success, error = pcall(t1, "d")
|
|
--if not success then
|
|
-- errFunc(error)
|
|
--else
|
|
-- print("Code executed successfully.")
|
|
--end
|
|
|