• ZILtoid1991@lemmy.worldOP
    link
    fedilink
    arrow-up
    3
    ·
    19 hours ago

    I personally prefer the memory safety tools offered by D over Rust. D also doesn’t come with const by default, and you can even opt out of the RAII stuff a certain graphics driver developer boasted about in the Linux developer mailings (RAII can be a bad for optimization).

    • CanadaPlus@futurology.today
      link
      fedilink
      English
      arrow-up
      8
      ·
      19 hours ago

      I feel like this has come up before, and D is not memory safe. It has some helper-type features, but at the end of the day it is still C-like.

      • ZILtoid1991@lemmy.worldOP
        link
        fedilink
        arrow-up
        2
        ·
        18 hours ago

        Not if you opt in it. You can even put @safe: in the beginning of your D source code, then you’ll have a memory safe D (you have to opt out by using @trusted then @system).