> Hi! > > OK, here goes... > In the middle of sub2 called from sub1, is it > possible to jump back to sub1 right after the
Um, yeah unless you exit or die or something like that in sub2. Not really sure where you're headed with this question but see if you can follow what's happening below : my $stuff = sub1("Hi"); sub sub1 { print "$_[0] \n"; print sub2("$_[0]"); print "Sub 2 is done I am sub 1 hear me roar! \n"; } sub sub2 { return "Thanks for saying $_[0] \n"; } > call to sub2 so sub1 can complete? > > Thanks! > > Mark > > -- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]