16 lines
251 B
Go
16 lines
251 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
func main() {
|
|
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
|
fmt.Fprintf(w, "Hello, World!")
|
|
})
|
|
|
|
fmt.Println("Server starting on port 12000")
|
|
http.ListenAndServe(":12000", nil)
|
|
}
|