Help for this page

Select Code to Download


  1. or download this
    sub { push @coords, @_[1,2] }
  2. or download this
    sub { 
        my (undef, $x, $y) = @_;
        push @coords, $x, $y;
    }