Skip to content

Instantly share code, notes, and snippets.

View qst-exe's full-sized avatar
🦔

qst-exe qst-exe

🦔
View GitHub Profile
local function string(o)
return '"' .. tostring(o) .. '"'
end
local function recurse(o, indent)
if indent == nil then indent = '' end
local indent2 = indent .. ' '
if type(o) == 'table' then
local s = indent .. '{' .. '\n'
local first = true