local p = {}
p.main = function(frame)
	local args = frame.args
	local out = ''
	
	out = out .. 'Hello, world!'
	
	return out
end
return p