Skip to content

Instantly share code, notes, and snippets.

@nilsmagnus
Created January 29, 2015 19:17
Show Gist options
  • Save nilsmagnus/5005c025830b1cb2c7fb to your computer and use it in GitHub Desktop.
Save nilsmagnus/5005c025830b1cb2c7fb to your computer and use it in GitHub Desktop.
tour of go excersize
package main
import (
"fmt"
"log"
"net/http"
)
type String string
type Struct struct {
Greeting string
Punct string
Who string
}
func (h Struct) ServeHTTP(
w http.ResponseWriter,
r *http.Request) {
fmt.Fprint(w, "struct!", h.Greeting, h.Punct, h.Who)
}
func (s String) ServeHTTP(
w http.ResponseWriter,
r *http.Request) {
fmt.Fprint(w, "string!", s)
}
func main() {
http.Handle("/string", String("I'm a frayed knot."))
http.Handle("/struct", &Struct{"Hello", ":", "Gophers!"})
err := http.ListenAndServe("localhost:4000", nil)
if err != nil {
log.Fatal(err)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment