Go Command

Run
# run with build
go run path/to/folder argument # main.go must be present in path/to/folder
Test
go test .\\...
Build
# main.go is at root repo (./)
go build
# main.go is in ./path/to/folder
go build -o out_name ./path/to/folder