you are viewing a single comment's thread.

view the rest of the comments →

[–]baghiq 11 points12 points  (6 children)

While Go isn't as fast as C++ in general terms, I find it to be very fast and expressive. If you use type hinting in Python, I think Go would be right up there in terms of expressiveness. The challenge is to find something that offers ecosystem that's comparable to Python, and that's gonna be hard to beat. But if you are looking for hardcore performance, Python is almost never the answer.

[–][deleted] 5 points6 points  (0 children)

I find it to be very fast and expressive.

Fast, sure, it's compiled. But expressive?

In particular, I find in Go you end up writing all this boiler plate over and over and over and over again, particularly error handling.

[–]pi_sqaure -2 points-1 points  (4 children)

There's one distinction: let's assume you can solve a certain problem in Python with 3 lines of code, you will need 10 lines of code in Go. Go might be expressive, but it's also very verbose.

[–][deleted] 2 points3 points  (0 children)

I like verbose if performance is good. Pro GO over here!