Use a closure,
(That is, make `handler` take `hi` as an argument, then pass
func (w http.ResponseWriter, r *http.Request, mystr string) {
handler( hi, w, t ) }
to HandleFunc.)
Or make a type satisfying the Handler interface and put your
hi variable in it.
Chris
--
Chris "allusive" Dollin