#--------- 1 ------------ sub foo { &bar; } sub bar { if ($negative) { exit(); } return(); } #### #--------- 2 ------------ sub foo { goto &bar; }