@@ -36,7 +36,6 @@ func Hello(ps pathrouter.Params, d interface{}) {
func main() {
router := pathrouter.New()
router.Handle("/hello/:name", Hello)
-
router.Execute("/hello/bob", "boring user data")
}
```