1

Totally new golang user here and I don't see a CLI tool but just wanted to make sure I wasn't overlooking it. It appears everything just compiles down to a binary that you can run, even when debugging?

Michael
  • 1,577
  • 1
  • 18
  • 33

2 Answers2

2

Go does not have a CLI that must be used when invoking a application written in Go. There is a go command that is "... a suite of programs to build and process Go source code". You can find more information about this in the command documentation

Diablojoe
  • 231
  • 1
  • 8
0

Yes there is, you can check it out here https://thenewstack.io/cli-command-line-programming-with-go/

Mirza Sisic
  • 2,401
  • 4
  • 24
  • 38