Serpent7776

u/Serpent7776@programming.dev
15 posts · 9 comments

Recent posts

Recent comments

on ifn't · c/programmer_humor · 2 pts · 2y

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