gobyexample/085-http-server/http-server.go
Mark McGranaghan e4b083d49b index work
2012-09-23 17:45:04 -07:00

16 lines
289 B
Go

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