ZILtoid1991@lemmy.world to Programmer Humor@programming.dev · 11 hours agoAn extremely crude comic about programming languageslemmy.worldimagemessage-square27fedilinkarrow-up1144arrow-down113
arrow-up1131arrow-down1imageAn extremely crude comic about programming languageslemmy.worldZILtoid1991@lemmy.world to Programmer Humor@programming.dev · 11 hours agomessage-square27fedilink
minus-squareCanadaPluslinkfedilinkEnglisharrow-up3·5 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·3 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
).