I have a small program that consists of three files, all belonging to the same package (main), but when I do \"go build main.go\" the build doesn\'t succeed. When it was jus
You could also just run
go build
in your project folder myproject/go/src/myprog
Then you can just type
./myprog
to run your app