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