Posted to tcl by kbk at Thu Jun 12 01:37:57 GMT 2008view pretty

proc b {} {
    return -code return {This goes to a's caller}
}
proc a {} {
    b
    return {This is never executed}
}
puts [a]