in reply to Command line to array
my @list=('test', 'Hello!'); my $func_name=shift @list; &$func_name(@list); sub test { print @_; }
To my suprise, this works fine.
____________________
Jeremy
I didn't believe in evil until I dated it.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Command line to array
by merlyn (Sage) on Apr 26, 2001 at 05:59 UTC | |
by frankus (Priest) on Apr 26, 2001 at 13:48 UTC | |
by merlyn (Sage) on Apr 26, 2001 at 16:53 UTC | |
by rob_au (Abbot) on Apr 26, 2001 at 17:25 UTC | |
by tilly (Archbishop) on Apr 27, 2001 at 04:11 UTC |