This was a really good summary of what Rust feels like in my opinion. I’m still a beginner myself but I recognize what this article is saying very much.

The hacker news comments are as usual very good too:

https://news.ycombinator.com/item?id=40172033

  • FizzyOrange@programming.dev
    link
    fedilink
    arrow-up
    29
    ·
    2 months ago

    Ha they literally said about 5 times in this page that people often say “it’s just a skill issue”… and here you are.

    I love Rust but the author’s points are 100% valid.

    • anlumo@feddit.de
      link
      fedilink
      arrow-up
      1
      arrow-down
      1
      ·
      2 months ago

      OP is talking about a different kind of skill issue than the article. The article is about skill issues in writing Rust code, while OP is about skill issues in choosing the right technology for the right task.

      Not picking Rust for code that has to be prototyped quickly and iterated a lot is kinda obvious. The solution would be to use Rust for the core engine where the requirements are clear and something else (lua? Python?) for the gameplay code. Even the engine the author wants to switch to does the same with with the divide between C++ and C#.