Slide 5
Slide 5 text
fmt.Printf
$ go build # ここでは気づけない
$ go run main.go # ここで気づける
moji%!(EXTRA string=yobun)
func main() {
http.HandleFunc(
"/xxx",
func(w http.ResponseWriter, r *http.Request) {
fmt.Printf("%s", "moji", "yobun")
return
},
)
http.ListenAndServe(":8080", nil)
}