package main
import (
"fmt"
"net/http"
)
func handlerFunc(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, "
Welcome to my awesome site!
")
}
func main() {
http.HandleFunc("/", handlerFunc)
fmt.Println("Starting the server on :3000...")
http.ListenAndServe(":3000", nil)
}