• h0bbl3s@lemmy.world
    link
    fedilink
    arrow-up
    24
    arrow-down
    3
    ·
    2 months ago

    I used c++ in college, and I think it’s useful to know c because so much relies on it. That said if I’m going to do something that needs performance I’ll look to go first, then rust if go isn’t a good fit, but that’s mostly because I know go better. Both are excellent languages.

    If I just need something functional quick and easily I’ll turn to Python. If I need a net service quick node.js is great.

    • Opisek@lemmy.world
      link
      fedilink
      arrow-up
      5
      ·
      2 months ago

      I was a huge C++ fan back when I was doing a bunch of competitive programming. If I need a performant project nowadays, I look to golang first. It gives me the speed of a compiled language with the usability of high-level language. I still solve the occasional Advent of Code in C++, though :)