tatterdemalion@programming.dev to Science Memes@mander.xyzEnglish · 1 year agoif statement == falsei.imgflip.comexternal-linkmessage-square39linkfedilinkarrow-up1253arrow-down117
arrow-up1236arrow-down1external-linkif statement == falsei.imgflip.comtatterdemalion@programming.dev to Science Memes@mander.xyzEnglish · 1 year agomessage-square39linkfedilink
minus-squarekbal@fedia.iolinkfedilinkarrow-up5arrow-down1·1 year ago if ( test == false ) x = 1 else x != 1
minus-squaredohpaz42@lemmy.worldlinkfedilinkEnglisharrow-up5arrow-down1·1 year agoNot sure what you’re trying to achieve with that else block, as it affects nothing.
minus-squarekbal@fedia.iolinkfedilinkarrow-up5·1 year agookay I fixed it if ( test == false ) x = 1 else assert( x != 1 )
if ( test == false ) x = 1 else x != 1Not sure what you’re trying to achieve with that else block, as it affects nothing.
okay I fixed it
if ( test == false ) x = 1 else assert( x != 1 )