Glenn Linderman wrote:
Here's a strangeness:

my $res = sysseek( @stk[ -2, -3, -1 ] );

fails to compile, but

my $res = sysseek( $stk[ -2 ], $stk[ -3 ], $stk[ -1 ] );

compiles fine. As far as I can tell, they have the same effect.

And curiously, the error from the first is about the number of parameters.


That would mean that '@stk[-2,-3,-1]' is being seen as other than 3 arguments. But that's impossible, isn't it ?


('parameters' mean 'arguments' doesn't it ?)

I certainly can't explain it.

Cheers,
Rob

--
Any emails containing attachments will be deleted from my ISP's mail server before I even get to see them. If you wish to email me an attachment, please provide advance warning so that I can make the necessary arrangements.


_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to