Sign in
go
/
go
/
cb2730e60cda5ce98e80caa2e463c81be4463a13
/
.
/
doc
/
codelab
/
wiki
/
http-sample.go
blob: 11d5d78613590e4c8098d70f85bba58262026003 [
file
] [
log
] [
blame
]
package main
import (
"fmt"
"http"
)
func handler(c *http.Conn, r *http.Request) {
fmt.Fprintf(c, "Hi there, I love %s!", r.URL.Path[1:])
}
func main() {
http.HandleFunc("/", handler)
http.ListenAndServe(":8080", nil)
}