Created
November 8, 2015 01:47
-
-
Save wm/9058536592b7d72f6784 to your computer and use it in GitHub Desktop.
calling-vs-casting-4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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