Help for this page

Select Code to Download


  1. or download this
    $ perl -MO=Deparse -e 'sub foo(){3};print foo()'
    print 3;
    
  2. or download this
    use constant DEBUGGING => 0;
    
    # later
    
    if (DEBUGGING) {...}
    
  3. or download this
    local *Some::Package::DEBUGGING = sub {0};