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 {
        ((return 1) and 0);
    }
    ;
    -e syntax OK
    
  2. or download this
    D:\Users\lanx>perl -MO=Deparse,-p,-x7 -e"sub { 0 if return 1 }"
    sub {
    ...
    }
    ;
    -e syntax OK