1package main 2 3import ( 4 "fmt" 5 "net/http" 6) 7 8func main() { 9 fmt.Println("hello world") 10 11 http.ListenAndServe(":8009", nil) 12}