Help for this page

Select Code to Download


  1. or download this
         case '/':    /* may be division, defined-or, or pattern */
             if ((PL_expect == XOPERATOR || PL_expect == XTERMORDORDOR) &&
    + s[1] == '/') {
    ...
                ...
                s = scan_pat(s,OP_MATCH);
            }
    
  2. or download this
        case '.':
            ...
            if (PL_expect == XOPERATOR || !isDIGIT(s[1])) {
                ...
                Aop(OP_CONCAT)
    
  3. or download this
    $ perl -MO=Deparse -e 'sub foo(&) {}; foo { "foo" } . 5'
    sub foo (&) {
    ...
        'foo';
    }
    , 0.5);
    
  4. or download this
    $ perl -E 'say 1 .5'
    15