Help for this page

Select Code to Download


  1. or download this
     349         |       USE startsub
     350                         { CvSPECIAL_on(PL_compcv); /* It's a BEGI
    +N {} */ }
     351                 BAREWORD BAREWORD optlistexpr ';'
    ...
     355                           parser->parsed_sub = 1;
     356                           $$ = NULL;
     357                         }
    
  2. or download this
    6307     /* Fake up an import/unimport */
    6308     if (arg && arg->op_type == OP_STUB) {
    6309         imop = arg;             /* no import on explicit () */
    6310     }
    
  3. or download this
    $ perl -mopen -e 1
    
    $ perl -Mopen -e 1
    open: needs explicit list of PerlIO layers at -e line 0.
    BEGIN failed--compilation aborted.
    
  4. or download this
    $ perl -Mopen= -e 1
    open: needs explicit list of PerlIO layers at -e line 0.
    ...
    $ perl -mopen= -e 1
    open: needs explicit list of PerlIO layers at -e line 0.
    BEGIN failed--compilation aborted.