package main import ( "fmt" "net/http" ) func main() { fmt.Println("hello world") http.ListenAndServe(":8009", nil) }