[go-nuts] Re: Why Go? What is the most important feature that led to you becoming a Go programmer?

2019-02-26 Thread gplus
For me, the first thing that stood out was the readability. Clear syntax without distractions or cryptic ornamentation. This becomes especially obvious when reading other people's code. Then the small and clear language spec. For me this document is the first stop for looking up language questi

[go-nuts] Re: Multi line go generate vs Bash script

2017-10-17 Thread gplus
Hi MichaƂ, Do the second and third line(s) depend on the success of the previous one(s)? If so, a Bash script seems a good option as it allows you to stop the whole process if one step fails. If you are not a fan of Bash or of makefiles, or if you don't want to restrict yourself to systems tha