1
0
mirror of https://github.com/20kdc/OC-KittenOS.git synced 2024-11-08 19:48:07 +11:00
OC-KittenOS/inst/uncompressed/instdeco.lua
2020-03-30 17:55:20 +01:00

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