view website/src/examples/hi.luan @ 602:b33c7c1e45d0

Added tag 0.12 for changeset d36027b41570
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 10 Nov 2015 06:01:19 -0700
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