nimdokk has asked for the wisdom of the Perl Monks concerning the following question:
Does anyone have any thoughts as to where the problem might be? The version of Perl that we have is 5.6.0 build 613. Thanks.use warnings; my @rray=(1,2,3,4,5); print "\@ARGV is @ARGV\n"; print "\@rray is @rray\n"; __END__ C:\temp\Perl>test2.pl 1 2 3 4 5 @ARGV is @rray is 1 2 3 4 5 C:\temp\Perl>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Problem with @ARGV in Win32 Perl
by blokhead (Monsignor) on Jul 24, 2003 at 20:18 UTC | |
by tye (Sage) on Jul 24, 2003 at 20:29 UTC | |
by nimdokk (Vicar) on Jul 24, 2003 at 20:27 UTC |