Untitled

 avatar
unknown
golang
a year ago
221 B
17
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