L
Size: a a a
TC
S
S
S
TC
VV
\n
) — это весело.S
S
S
local strbuf = ""
while true do
local a, b = strbuf:find("regex")
while a and b do
local block
block, strbuf = strbuf:sub(a, b), strbuf:sub(b + 1)
parse_block(block)
a, b = strbuf:find("regex")
end
local chunk = read(2048 * 100000)
if #chunk == 0 then break end
strbuf = strbuf .. chunk
end
VV
S
S
VV
S
VV
local strbuf = ""
while true do
local a, b = strbuf:find("regex")
while a and b do
local block
block, strbuf = strbuf:sub(a, b), strbuf:sub(b + 1)
parse_block(block)
a, b = strbuf:find("regex")
end
local chunk = read(2048 * 100000)
if #chunk == 0 then break end
strbuf = strbuf .. chunk
end
S
VV
S