Untitled
unknown
golang
2 years ago
221 B
24
Indexable
package main
import(
"fmt"
"net/http"
)
func HelloWorldPage(w http.ResponseWriter, r *http.Request){
fmt.Fprint(w, "Hello World")
}
func main(){
http.HandleFunc("/", HelloWorldPage)
http.ListenAndServe("", nil)
}
Editor is loading...
Leave a Comment