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?
Asked
Active
Viewed 206 times
1
-
1there is no REPL – Scott Stensland Jun 20 '17 at 19:29
-
1A CLI tool for what? – Jonathan Hall Jun 20 '17 at 19:36
-
Any time you run a Go application, it results in a native binary. Debugging, "go run file.go", unit testing, they all produce binaries. – Adrian Jun 20 '17 at 19:44
2 Answers
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