Serpent7776@programming.dev to C Programming Language@programming.devEnglish · 1 year agoAsync‑signal-safety and why should you careplus-squaredev.toexternal-linkmessage-square0linkfedilinkarrow-up11arrow-down10
arrow-up11arrow-down1external-linkAsync‑signal-safety and why should you careplus-squaredev.toSerpent7776@programming.dev to C Programming Language@programming.devEnglish · 1 year agomessage-square0linkfedilink
minus-squareSerpent7776@programming.devtoProgrammer Humor@programming.dev•ifn'tlinkfedilinkEnglisharrow-up2·3 years 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} % linkfedilink
I can actually define this in TCL: