101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
local kt = {}
for k,v in pairs(ary) do kt[#kt+1] = k end
return kt
end;
ingest = function(f)
local h = io.open(f, 'r')
if h == nil then return nil end
local txt = f:read('*a') f:close()
return chomp(txt)
end;
parseargs = function(a)
local raw = false
local opts, args = {}, {}
for i,v in ipairs(a) do
if v == '--' then
|
|
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
local kt = {}
for k,v in pairs(ary) do kt[#kt+1] = k end
return kt
end;
ingest = function(f)
local h = io.open(f, 'r')
if h == nil then return nil end
local txt = h:read('*a') h:close()
return chomp(txt)
end;
parseargs = function(a)
local raw = false
local opts, args = {}, {}
for i,v in ipairs(a) do
if v == '--' then
|