yangtse has asked for the wisdom of the Perl Monks concerning the following question:
my $string = getString($ARGV[]); ENDING MY TIMER sub getString{ my @thisarray = @_; my $thisString; foreach (@thisarray){ $thisString .= $_; } STARTING MY TIMER return $thisString; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: it takes 1-2 seconds to return a string from a subrountine
by tommyw (Hermit) on Aug 14, 2002 at 13:50 UTC | |
by yangtse (Acolyte) on Aug 14, 2002 at 17:43 UTC | |
by runrig (Abbot) on Aug 14, 2002 at 18:03 UTC | |
|
Re: it takes 1-2 seconds to return a string from a subrountine
by flounder99 (Friar) on Aug 14, 2002 at 13:33 UTC | |
|
Re: it takes 1-2 seconds to return a string from a subrountine
by RMGir (Prior) on Aug 14, 2002 at 15:09 UTC | |
|
Re: it takes 1-2 seconds to return a string from a subrountine
by spurperl (Priest) on Aug 14, 2002 at 15:05 UTC |