mirror of
https://github.com/20kdc/OC-KittenOS.git
synced 2024-11-09 03:58:08 +11:00
13 lines
194 B
Lua
13 lines
194 B
Lua
-- This is released into the public domain.
|
|
-- No warranty is provided, implied or otherwise.
|
|
|
|
t = ""
|
|
function L(d)
|
|
t = t .. d
|
|
while #t >= 512 do
|
|
M(t:sub(1, 512))
|
|
t = t:sub(513)
|
|
end
|
|
end
|
|
|