Help for this page

Select Code to Download


  1. or download this
    my $pointless_reference = $obj->getPosition();
    my ($x, $y) = @$pointless_reference[0,1];
    
  2. or download this
    my ($x, $y) = @{$obj->getPosition()};
    
  3. or download this
    my ($x, $y) = $obj->getPosition();