Slide with text: “Rust teams at Google are as productive as ones using Go, and more than twice as productive as teams using C++.”

In small print it says the data is collected over 2022 and 2023.

  • @arendjrOP
    link
    46 months ago

    You are right. But I think similar secondary benefits also come from using the borrow checker. Rust developers, by necessity, try to avoid using circular references and prefer immutability where they can. Both of these are advantages because they tend to make for systems that are easier to understand and are easier to maintain.

    • @FizzyOrange
      link
      16 months ago

      Yeah I agree. The borrow checker definitely pushes you to write less buggy code.