gae-service-container/main.go (12 lines of code) (raw):
package main
import (
"fmt"
"log"
"net/http"
)
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, "Hello world")
})
log.Fatal(http.ListenAndServe(":8080", nil))
}