Help for this page

Select Code to Download


  1. or download this
    my @xcoords = map { $coords{$_}[0] } (keys %coords
    
  2. or download this
    my @xcoords = map { $coords{$_}[0] } qw(061 062);
    
  3. or download this
    my @xcoords = map { $_->[0] } (values %coords);