# README
- Take the previous program and change it so that:
- func main uses http.Handle instead of http.HandleFunc
Contstraint: Do not change anything outside of func main
Hints:
type HandlerFunc func(ResponseWriter, *Request)
func HandleFunc(pattern string, handler func(ResponseWriter, *Request))
func (mux *ServeMux) HandleFunc(pattern string, handler func(ResponseWriter, *Request)) {
mux.Handle(pattern, HandlerFunc(handler))
}