I have a project in github.com/user called project:
src/ github.com/user/project sub1/ main.go sub1.exe (??) sub2/ main.go sub2.exe (??)
I am trying to compile a package in my project. When I:
$ cd github.com/user/project/sub1 $ go build
Nothing happens. Go build seems to end without complaint, but there is no executable. How can I create packages in an executable?
"go version go1.3 windows / amd64"
Kiril source share