Go言語でhttpサーバーを立ち上げてHello Worldをする - Qiita

Go言語でシンプルにhttpサーバーを立ち上げる場合net/httpを使う。package mainimport ( "fmt" "net/http")func handler(w http…