- Official Go playground: Click here
go env | grep PATH
go help
- most used
src: https://youtu.be/3ry1Q7feLxA
# build app
go build
go get
#Run app
go run
md app && cd app
go mod init app1
go get -u github.com/gin-gonic/gin
# run app
go run main.go
Amazing -> Source: https://stackoverflow.com/a/45654233/10012446