Go docs の例に従い、Go サーバー用にこのコードをコンパイルしました。
package main
import (
"fmt"
"net/http"
)
func handler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hi there, I love %s!", r.URL.Path[1:])
}
func main() {
http.HandleFunc("/", handler)
http.ListenAndServe(":8080", nil)
}
しかし、localhost:8080 にアクセスしても何も表示されません。