OC-KittenOS/inst/uncompressed/instdeco.lua

14 lines
220 B
Lua

-- This is released into the public domain.
-- No warranty is provided, implied or otherwise.
t = ""
function L(d)
if not d then return end
t = t .. d
while #t >= 512 do
M(t:sub(1, 512))
t = t:sub(513)
end
end