Formatting the Code
This lesson highlights the importance of formatting in Go and a tool that performs formatting automatically.
We'll cover the following...
Formatting in Go #
Go’s authors didn’t want endless discussions about code-style for the Go-language. Specifically, the discussions that were indeed, a waste of precious development time for so many languages in the past. So, they made a tool: go fmt
(or with more possibilities: gofmt
). It is a pretty-printer that imposes the official, standard code ...