1
0
mirror of https://github.com/golang/go synced 2024-09-28 20:14:28 -06:00
go/doc/codelab/wiki/http-sample.go

16 lines
237 B
Go
Raw Normal View History

package main
import (
"fmt"
"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)
}