JPDev to Programmer Humor · 1 year agoifn'timagemessage-square127linkfedilinkarrow-up1774arrow-down111
minus-squareSerpent7776linkfedilinkEnglisharrow-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: