mercuryshipz has asked for the wisdom of the Perl Monks concerning the following question:

hi,

how to pass results of one function as an argument to an another function

thanks.

Replies are listed 'Best First'.
Re: functions and arguments
by xorl (Deacon) on Feb 18, 2008 at 20:40 UTC
    Oh finally a simple one I can answer...
    $x = function2(function1($y)); sub function2 { ...dosomething... } sub function1 { ...dosomethingelse... }
    A reply falls below the community's threshold of quality. You may see it by logging in.