view website/src/examples/hi.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 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