JPDev@programming.dev to Programmer Humor@programming.dev · 1 year agoifn'tprogramming.devimagemessage-square127fedilinkarrow-up1773arrow-down111
arrow-up1762arrow-down1imageifn'tprogramming.devJPDev@programming.dev to Programmer Humor@programming.dev · 1 year agomessage-square127fedilink
minus-squareSerpent7776@programming.devlinkfedilinkEnglisharrow-up2·1 year agoI can actually define this in TCL: % proc ifn't {cond cmds} {if {!$cond} {uplevel $cmds}} % ifn't false {puts 12} 12 % ifn't true {puts 12} %
I can actually define this in TCL: