view http/src/luan/modules/http/test.luan @ 554:18504c41b0be

move debug() to Io and remove Debug module; Io.print() now doesn't print newline if there is nothing to be printed;
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 18 Jun 2015 03:30:18 -0600
parents 9218f9cf45d3
children ca169567ce07
line wrap: on
line source

local Luan = require "luan:Luan"
local Io = require "luan:Io"
local Server = require "luan:http/Server"

if #{...} ~= 2 then
	Io.stderr.write "usage: luan luan:http/serve dir-URI test-URI\n"
	return
end

local dir, test = ...
Server.init(dir)
Luan.do_file(test,true)