> In the above line, `shift` will return just the first element from the
> @_ array. $y will therefore be undefined. The line should be rewritten
> as:
>     my ( $x, $y ) = @_;
>
Thank you. I should have caught that.

Chris

Reply via email to