Skip to content

Instantly share code, notes, and snippets.

@tailhook
Created January 2, 2016 21:47
Show Gist options
  • Save tailhook/859861363c3cad8d4a87 to your computer and use it in GitHub Desktop.
Save tailhook/859861363c3cad8d4a87 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, "Hello World")
}
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