• @dmdeemer@diggit.xyz
    link
    fedilink
    411 months ago

    I’ve been learning Rust for a few weeks now, so next year I can take that survey and say that I love Rust, too.

  • Tywele
    link
    fedilink
    311 months ago

    As someone who doesn’t know Rust, only C#. What makes Rust so loved?

    • @G0ldenSp00nA
      link
      fedilink
      411 months ago

      Rich types, makes encoding complex business logic into the type system easier and makes building stuff easier

      • @Starfighter@discuss.tchncs.de
        link
        fedilink
        2
        edit-2
        11 months ago

        Even more important is the quality of the standard toolchain. It comes with nearly everything you will ever need and makes development and reproducibility much much easier than the toolchains encountered with other languages.

        Take the compiler error messages for example. Cargo is a breeze against the dependency complications when working with make. Or how many packages come with useful rustdoc pages on docs.rs.