Skip to content

Instantly share code, notes, and snippets.

@radu-matei
Created September 21, 2017 07:51
Show Gist options
  • Save radu-matei/7de20b06733ffcc187153cdfa8abf087 to your computer and use it in GitHub Desktop.
Save radu-matei/7de20b06733ffcc187153cdfa8abf087 to your computer and use it in GitHub Desktop.
simple-web-go
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