Mercurial Hosting > luan
view website/src/examples/hi.luan @ 679:43522473599d
make java line numbers match
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 14 Apr 2016 15:19:25 -0600 |
parents | 7bc63886d4f2 |
children | ca169567ce07 |
line wrap: on
line source
local Io = require "luan:Io" local Http = require "luan:http/Http" return function() Io.stdout = Http.response.text_writer() %> <html> <body> Hello World </body> </html> <% end