view blog/src/private/tools/test.luan @ 612:bb9a790d8401

Added tag 0.14 for changeset 8bd98da6991a
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 13 Dec 2015 17:44:58 -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