1
0
mirror of https://github.com/20kdc/OC-KittenOS.git synced 2024-11-09 03:58:08 +11:00
OC-KittenOS/inst/uncompressed/instdeco.lua

14 lines
220 B
Lua
Raw Normal View History

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