Skip Navigation

You're viewing a single thread.

125 comments
  • I can actually define this in TCL:

     tcl
        
    % proc ifn't {cond cmds} {if {!$cond} {uplevel $cmds}}
    % ifn't false {puts 12}
    12
    % ifn't true {puts 12}
    % 
    
      
125 comments