Skip to content

Instantly share code, notes, and snippets.

@lettergram
Created March 19, 2015 00:04
Show Gist options
  • Save lettergram/6784d9f544835321f0b4 to your computer and use it in GitHub Desktop.
Save lettergram/6784d9f544835321f0b4 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