Skip to content

Instantly share code, notes, and snippets.

@ilgooz
Created February 7, 2015 14:23
Show Gist options
  • Save ilgooz/84111db259494a470054 to your computer and use it in GitHub Desktop.
Save ilgooz/84111db259494a470054 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