Skip to content

Instantly share code, notes, and snippets.

@dyoder
Created February 28, 2012 22:53
Show Gist options
  • Save dyoder/1935838 to your computer and use it in GitHub Desktop.
Save dyoder/1935838 to your computer and use it in GitHub Desktop.
Hello world Go Web app
package main
import (
"fmt"
"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(":3000", nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment