1
0
mirror of https://github.com/golang/go synced 2024-10-03 12:21:22 -06:00
go/doc/articles/wiki/http-sample.go

16 lines
241 B
Go
Raw Normal View History

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)
}