Hacker News new | ask | show | jobs
by whateveracct 4081 days ago
Go seems like a terrible choice for any programming problem that requires data modeling/manipulation. Basic structs, slices+maps, and loops are all you have.

Go is good at plenty of things, but building abstractions is not one of them.

1 comments

Sorry, I'm not from around here I guess. What do you mean? Have you seen etcd https://github.com/coreos/etcd or sync.pool?
I read your posts and I don't know if I just don't understand you or if you are trolling.

I believe what the parent post refers to is that Ruby - being a dynamic language - is way more flexible with types and data structures. On top of that it has very convenient methods for data manipulation. This allows you to express solutions in a fewer lines of code compared to lower languages (with the added downside of slowness of course).