14 lines
198 B
Go
14 lines
198 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(":0", nil)
|
||
|
}
|