2 points
I 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}
%
29 points
I’m struggling to understand if this is true or ifn’t true
18 points
1 point
26 points
I’d take a not
or “if not” operator tbh.
3 points
9 points
*
3 points
2 points
2 points
28 points
Imagine the regex needed to highlight code with that extra single quote.