Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re^3: To call a sub from another sub

by jkva (Chaplain)
on Feb 02, 2006 at 12:02 UTC ( [id://527314]=note: print w/replies, xml ) Need Help??


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.

Replies are listed 'Best First'.
Re: To call a sub from another sub
by jonadab (Parson) on Feb 02, 2006 at 12:26 UTC
    Two points:
    • You missed the part where a value is passed in, processed, and returned.
    • Don't just hand him complete working code. He made no attempt to write any code himself, and he won't learn anything until he does, and it's obviously homework, the first assignment of the semester by the look of it.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://527314]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (7)
As of 2024-03-19 03:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found