func main() { web.Listen(":8080") }
func main() { web.Route("/", func(ctx web.Context) { ctx.Render(nil) }) web.Listen(":80") }