Go Command
Run
# run with build
go run path/to/folder argument # main.go must be present in path/to/folderTest
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# run with build
go run path/to/folder argument # main.go must be present in path/to/foldergo test .\\...# main.go is at root repo (./)
go build
# main.go is in ./path/to/folder
go build -o out_name ./path/to/folder