Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^8: a *working* JSON module (Perl's Debugger), related issues

by bliako (Monsignor)
on Nov 01, 2021 at 07:17 UTC ( [id://11138290]=note: print w/replies, xml ) Need Help??

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
    +)
        ...
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11138290]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (3)
As of 2024-04-26 02:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found