package main import ( "net/http" ) func attempt(w http.ResponseWriter, req *http.Request) { w.Write([]byte("hello")) } func problem(w http.ResponseWriter, req *http.Request) { w.Write([]byte("hello")) }