Help for this page

Select Code to Download


  1. or download this
    use constant DEBUG => 0;
    
  2. or download this
    use strict;
    use warnings;
    ...
    print "Hello World\n";
    print "This is a debug Statement\n" if DEBUG;
    print "Goodbye Cruel Word\n";
    
  3. or download this
    use constant ('DEBUG', 0);
    use warnings;
    ...
    print "Hello World\n";
    '???';
    print "Goodbye Cruel Word\n";
    
  4. or download this
    use strict;
    use warnings;
    ...
        noconstant => sub { my $a = 10 * $b; },
    };
    
  5. or download this
                    Rate   constant noconstant
    constant   1498536/s         --       -17%
    noconstant 1796946/s        20%         --