func main()

in pack/example/main.go [9:14]


func main() {
	http.HandleFunc("/", hello)

	log.Println("Listening on port 8080")
	http.ListenAndServe(":8080", nil)
}