Skip to content

Instantly share code, notes, and snippets.

@zofrex
Created April 2, 2016 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zofrex/6f5173c16515443f4b607fe50255ef0c to your computer and use it in GitHub Desktop.
Save zofrex/6f5173c16515443f4b607fe50255ef0c to your computer and use it in GitHub Desktop.
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