It’s getting more and more unhinged on LinkedIn.

  • Jocarnail@lemmy.world
    link
    fedilink
    arrow-up
    3
    ·
    7 days ago

    I’m still learning Rust coming from Python and R and honestly point 2 and 3 are not even that bad. Sure I have been bashing my head against some corners, and the lack of OOP was somewhat unexpected, but imho the language really helps you think about what you are doing.

    • sugar_in_your_tea@sh.itjust.works
      link
      fedilink
      arrow-up
      3
      ·
      7 days ago

      the lack of OOP

      Rust absolutely has OOP, that’s what Traits are for. It just doesn’t have classical inheritance, so you structure your patterns a bit differently.

      That said, I lean more into functional-inspired style anyway, which tends to work pretty well w/ Rust.