Help for this page

Select Code to Download


  1. or download this
    D:\Users\lanx>perl -MO=Deparse,-p -e"sub {return 1 and 0 }"
    sub {
    ...
    }
    ;
    -e syntax OK
    
  2. or download this
    D:\Users\lanx>perl -MO=Deparse,-p,-x10 -e"sub {return 1 and 0 }"sub { 
    +                                                                     
    +  ((return 1) and 0);                                                
    +  }                                                                  
    +      ;
    
  3. or download this
    D:\Users\lanx>perl -MO=Deparse,-p -e"sub { return 1 and 0 }"
    sub {
        ((return 1) and 0);
    }
    ;
    -e syntax OK