2023-04-09 05:35:35 +00:00
|
|
|
-- SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2022-04-01 12:51:01 +00:00
|
|
|
---@diagnostic disable: lowercase-global
|
|
|
|
inspect = require "inspect"
|
2023-04-20 20:29:52 +00:00
|
|
|
dbg = require "debugger"
|
2022-04-01 12:51:01 +00:00
|
|
|
|
|
|
|
function p(v) print(inspect(v)) end
|
2023-04-20 20:29:52 +00:00
|
|
|
function pt(t) for k, v in pairs(t) do print(k, v) end end
|