Mercurial Hosting > luan
view blog/src/private/tools/test.luan @ 604:b73f005f3735 0.13
table constructor now uses end_of_line as a delimiter
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 24 Nov 2015 16:29:27 -0700 |
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