func main()

in example/example.go [7:12]


func main() {
	mux := http.NewServeMux()
	mux.Handle("/", http.FileServer(http.Dir("./static")))

	http.ListenAndServe(":4000", mux)
}