hello.go 230 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 package helloworld import ( "fmt" "net/http" ) func init() { http.HandleFunc("/", handle) } func handle(w http.ResponseWriter, r *http.Request) { fmt.Fprint(w, "<html><body>Hello, World! 세상아 안녕!</body></html>") }