Created
April 2, 2016 16:56
-
-
Save zofrex/6f5173c16515443f4b607fe50255ef0c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rename if if_old | |
proc if { | |
condition | |
block | |
} { | |
if_old {! [expr $condition]} { | |
uplevel 1 $block | |
} | |
} | |
if { true } { | |
puts "sanity reigns" | |
} | |
if { false } { | |
puts "Human sacrifice, dogs and cats living together... mass hysteria!" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment