Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    use strict;
    
    if (1==1) { 1; }
    
  2. or download this
    $ perl -MO=Deparse equal
    
    BEGIN { $^W = 1; }
    ...
        '???':
    };
    
  3. or download this
    #!/usr/bin/perl -w
    
    use strict;
    
    if (0==1) { 1; }
    
  4. or download this
    $ perl -MO=Deparse unequal
    
    BEGIN { $^W = 1; }
    ...
        '???'
    };
    
  5. or download this
    #!/usr/bin/perl -w
    
    use strict;
    
    if (1==0) { 1; }
    
  6. or download this
    $ perl -MO=Deparse unequal2
    
    BEGIN { $^W = 1; }
    ...
        '???'
    };
    
  7. or download this
    #!/usr/bin/perl -w
    
    use strict;
    
    1;
    
  8. or download this
    $ perl -MO=Deparse uncommented
    
    BEGIN { $^W = 1; }
    use strict 'refs';
    '???':
    
  9. or download this
    #!/usr/bin/perl -w
    
    use strict;
    
    # 1;
    
  10. or download this
    $ perl -MO=Deparse commented
    
    BEGIN { $^W = 1; }