Skip to content

Instantly share code, notes, and snippets.

@wm
Created November 8, 2015 01:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wm/9058536592b7d72f6784 to your computer and use it in GitHub Desktop.
Save wm/9058536592b7d72f6784 to your computer and use it in GitHub Desktop.
calling-vs-casting-4
package main
import (
"fmt"
"net/http"
)
func Rofl(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, "ROFL")
}
func main() {
http.HandleFunc("/yolo2", Yolo)
http.ListenAndServe(":3000", nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment