JPDev@programming.dev to Programmer Humor@programming.dev · 10 months agoifn'tprogramming.devimagemessage-square127fedilinkarrow-up1773arrow-down111
arrow-up1762arrow-down1imageifn'tprogramming.devJPDev@programming.dev to Programmer Humor@programming.dev · 10 months agomessage-square127fedilink
minus-squareKmlSlmk64@lemmy.worldlinkfedilinkarrow-up15arrow-down1·10 months agoIf someone really wanted to add it, probably the best would be to use unless
minus-squareJoshuaEN@lemmy.worldlinkfedilinkEnglisharrow-up10arrow-down1·10 months agoI really liked having unless in Ruby; a ! can be easy to miss, while unless made it clear without needing to write out != true.
minus-squareHexAndSquare@lemmy.worldlinkfedilinkarrow-up3arrow-down1·10 months agoIt’s also cool when you do unless(!condition). I particularly like this.
If someone really wanted to add it, probably the best would be to use
unless
I really liked having
unless
in Ruby; a!
can be easy to miss, whileunless
made it clear without needing to write out!= true
.It’s also cool when you do unless(!condition). I particularly like this.