gobyexample/071-hello-web/hello-web.go
2012-09-23 18:31:33 -07:00

16 lines
284 B
Go

// ## Hello Web
package main
import "net/http"
func hello(res http.ResponseWriter, req *http.Request) {
res.Header().Set("Content-Type", "text/plain")
res.Write([]byte("Hello web\n"))
}
func main() {
http.HandleFunc("/", hello)
http.ListenAndServe(":5000", nil)
}