http://qs321.pair.com?node_id=527314


in reply to Re^2: To call a sub from another sub
in thread To call a sub from another sub

Perhaps you want this :
sub subroutine_1 { my $val = subroutine_2(); print "$val this is subroutine_2 output!"; } sub subroutine_2 { return "w00t!"; }
It does not pass it back to subroutine_2 but should give you a rough idea of how things like these work.