box-o-sand/oldstuff/gotime/gotour-artifacts/hello-web/main.go
2015-06-22 13:15:42 -05:00

20 lines
237 B
Go

package main
import (
"fmt"
"net/http"
)
type Hello struct{}
func (h Hello) ServeHTTP(
w http.ResponseWriter,
r *http.Request) {
fmt.Fprint(w, "Hello!\n")
}
func main() {
var h Hello
http.ListenAndServe("localhost:4000", h)
}