Mercurial Hosting > luan
view website/src/examples/chunked.html.luan @ 2024:fa8304b060d9
rename launching luan files
| author | Franklin Schmidt <fschmidt@gmail.com> | 
|---|---|
| date | Wed, 29 Oct 2025 21:12:53 -0600 | 
| parents | bba3e529e346 | 
| children | 
line wrap: on
 line source
local Luan = require "luan:Luan.luan" local error = Luan.error local range = Luan.range or error() local Thread = require "luan:Thread.luan" local sleep = Thread.sleep or error() local Io = require "luan:Io.luan" local Http = require "luan:http/Http.luan" return function() Http.response.write_chunked_text(function(writer) Io.stdout = writer for i in range(1,10) do %> line <%=i%><br> <% writer.flush() sleep(1000) end end) end
