mirror of
https://github.com/Qsgs-Fans/FreeKill.git
synced 2024-11-16 19:58:13 +08:00
f0212d54cf
为Pattern增加了否定语法 优化几个类的__tostring元方法 增加调试器第三方库,编写调试文档
9 lines
236 B
Lua
9 lines
236 B
Lua
-- SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
---@diagnostic disable: lowercase-global
|
|
inspect = require "inspect"
|
|
dbg = require "debugger"
|
|
|
|
function p(v) print(inspect(v)) end
|
|
function pt(t) for k, v in pairs(t) do print(k, v) end end
|