From 96da27494f89d75f8aec0c8894440c3f7482f54b Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Thu, 26 Jan 2017 17:43:38 +0100 Subject: More lua --- src/syslua/init.lua | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/syslua/init.lua (limited to 'src/syslua/init.lua') diff --git a/src/syslua/init.lua b/src/syslua/init.lua new file mode 100644 index 0000000..1ee7ee6 --- /dev/null +++ b/src/syslua/init.lua @@ -0,0 +1,22 @@ +print "Lua helpers for Kogata v1" + +do + local old_tostring = tostring + function tostring(x) + if type(x) == "table" then + if next(x) == nil then + return '{}' + end + local q = '{\n ' + for k, v in pairs(x) do + if q:len() > 4 then + q = q .. ',\n ' + end + q = q .. k .. ': ' .. tostring(v):gsub('\n', '\n ') + end + return q .. '\n}' + else + return old_tostring(x) + end + end +end -- cgit v1.2.3