Help for this page

Select Code to Download


  1. or download this
     0:59 >perl -Mstrict -MData::Dump -MConst::Fast -we "use constant A =>
    + 12; const our $B => 13; my %h = ( (A) => 'twelve', $B => 'thirteen')
    +; dd \%h;"
    { 12 => "twelve", 13 => "thirteen" }
    ...
    -e syntax OK
    
     0:59 >
    
  2. or download this
    use constant DEBUG => 0;
    ...
    perform_some_debugging_operation() if DEBUG;
    ...