gobyexample/xx-http-server.go
Mark McGranaghan 33bbe945d5 hello from http
2012-09-16 19:03:50 -07:00

14 lines
283 B
Go

package main
import ("net/http"; "io")
func hello(res http.ResponseWriter, req *http.Request) {
res.Header().Set("Content-Type", "text/plain")
io.WriteString(res, "Hello From HTTP\n")
}
func main() {
http.HandleFunc("/", hello)
http.ListenAndServe(":5000", nil)
}