Flags and Options in Go CLIs
Quick Recap
In Article 1, we built a small Go CLI that reads a name from the terminal using os.Args. We ran it like this:
./greeter John
And printed:
Hello, John!
That works, but it has a problem. W
thegoninja.hashnode.dev8 min read