Help for this page

Select Code to Download


  1. or download this
    my $debug = 1;
    sub get_elevation_from_coordinates {
    ...
        $debug //= 0;
        ...
    }
    
  2. or download this
    our $debug = 1; # OUR!
    sub get_elevation_from_coordinates {
    ...
        $debug //= $main::debug; # if none specified, use "global" (main's
    +)
        ...
    }