0

I wrote a HelloWorld.py and using grumpy, I compiled the HelloWorld.py to a Go source code.

The go build is executed successfully without any errors but there was no binary file found in the folder.

I need to know where I can found the binary file of my code.

ifnotak
  • 4,147
  • 3
  • 22
  • 36
sof
  • 1
  • 1
  • Look at [this](https://stackoverflow.com/questions/30612611/what-does-go-build-build-go-build-vs-go-install). – ifnotak Mar 23 '20 at 18:23

1 Answers1

0

It depends a bit on your directory setup. I think the simple answer is just to use the -o option to write it in your current directory.

go build -o mybin