14 lines
208 B
Go
14 lines
208 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
func main() {
|
|
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
|
fmt.Fprintf(w, "Hello, world!")
|
|
})
|
|
http.ListenAndServe(":80", nil)
|
|
}
|