Skip to content

Instantly share code, notes, and snippets.

@wdalmut
Created November 20, 2013 11:15
Show Gist options
  • Save wdalmut/7561553 to your computer and use it in GitHub Desktop.
Save wdalmut/7561553 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"net/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(":8080", nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment