ZILtoid1991@lemmy.world to Programmer Humor@programming.dev · 17 hours agoAn extremely crude comic about programming languageslemmy.worldimagemessage-square28fedilinkarrow-up1162arrow-down114
arrow-up1148arrow-down1imageAn extremely crude comic about programming languageslemmy.worldZILtoid1991@lemmy.world to Programmer Humor@programming.dev · 17 hours agomessage-square28fedilink
minus-squareCanadaPlus@futurology.todaylinkfedilinkEnglisharrow-up7·11 hours agoI 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.
minus-squareZILtoid1991@lemmy.worldOPlinkfedilinkarrow-up2·9 hours agoNot 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).
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.
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
).