Mercurial Hosting > luan
view blog/src/private/tools/test.luan @ 679:43522473599d
make java line numbers match
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 14 Apr 2016 15:19:25 -0600 |
parents | e930f92d0f61 |
children | ca169567ce07 |
line wrap: on
line source
local Luan = require "luan:Luan" local do_file = Luan.do_file local try = Luan.try local Io = require "luan:Io" local print = Io.print local Http = require "luan:http/Http" return function() Io.stdout = Http.response.text_writer() Http.response.content_type = "text/plain" try { function() do_file "site:/lib/test.luan" end; catch = function(e) print() print("error:",e) end; } local Db = require "site:/lib/Db" Db.close() end