Y
Hacker News
new
|
ask
|
show
|
jobs
by
usrbinbash
959 days ago
The fact that Go doesn't have C's macros alone already makes it a lot simpler.
And please don't get me started on writing concurrent code in C.
1 comments
EnergyAmy
959 days ago
`//go:generate` is far worse than C's macros
link
saturn_vk
959 days ago
That's just a glorified make rule. There's nothing inherently hidden or complex that it generates, unlike macros
link
majewsky
959 days ago
I have written Go professionally for close to 10 years. The only time I encountered go:generate is in yacc parsers deep within libraries. A regular Go developer might go for years without realizing that it even exists. Compare this to C macros.
link