1.1 albertel 1: proc a {} { 2: if { 1==1 } { 3: break 4: puts here2 5: } else { 6: puts here 7: } 8: puts here3 9: } 10: 11: a 12: puts here4