Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
      # easy! It's an error...it's 265...it's 50?  Find out :-)
    print MULTIPLIER * $x, "\n";
    
  2. or download this
    BEGIN{print MULTIPLIER; print "\n";}
    
  3. or download this
    BEGIN {print MULTIPLIER => "\n";}
    
  4. or download this
    BEGIN {print MULTIPLIER * sub{return MULTIPLIER}, "\n";}
      # which really ought to be written as below to get 
      # sane results (real obfuscation value there,
      # but not really a namespace issue)
    BEGIN {print MULTIPLIER * &{sub{return MULTIPLIER}}, "\n";}