Help for this page

Select Code to Download


  1. or download this
    Priority:   3rd 1st  2nd  4th
              ((1.0 0.1)(99.0 0.2))
    
  2. or download this
    my @coordinates_unsorted;
    
    ...
        printf "((%2.1f %2.1f) (%2.1f %2.1f))\n", @{$coordinate_ref};
    }
    
  3. or download this
    my( @coordinates_sorted ) =
        map{ 
    ...
        local $, = "\n";
        print @coordinates_sorted;
    }