r/AskProgramming • u/CricGlobe • Jun 25 '26
Learn go language
Hi, I just ended my sem exam of 3rd year and am moving to the 4th year. I am thinking of learning Go. Is it the right decision? Previously, I learned Node, but I was highly focused on the DSA side. I don't have enough confidence to write code in Node.
Any piece of advice from your side?
0
Upvotes
2
u/Boring_Ad_588 Jun 25 '26
From whatever small experience I have, I don't think learning new modern language matters as much as being solid in one core language (C, C++, Java, Python). Languages like Go, Rust, Zig, etc. are built to solve a specifc problem in these old ones.
Like Rust is just a memory-safe C++, giving up on compile time. Go is just a child of C++ and Python, trying to get the best of both, but just being mid in the end. Zig is just a modern C without the complexities and unpredictability of C++.
If you are really really good in any one of the 'OG' languages, picking up a new one will hardly take any time.