Serpent7776

@Serpent7776@programming.dev
0 Post – 1 Comments
Joined 5 months ago

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}
%