Help for this page

Select Code to Download


  1. or download this
    PP(pp_grepwhile)
        ...
    ...
        RETURN;
        }
    ...
    
  2. or download this
    c:\test>perl -MO=Concise -wle"print scalar( 1, 2, 3 );"
    Useless use of a constant in void context at -e line 1.
    ...
    -              <0> ex-const v ->5
    5              <$> const[IV 3] s ->6
    -e syntax OK
    
  3. or download this
    c:\test>perl -wle"print for ( 'a','b','c' )"
    a
    b
    c
    
  4. or download this
    c:\test>perl -wle"print for scalar(( 'a','b','c' ))"
    Useless use of a constant in void context at -e line 1.
    Useless use of a constant in void context at -e line 1.
    c
    
  5. or download this
    c:\test>perl -wle"print for scalar 'a','b','c'"
    a
    ...
    Useless use of a constant in void context at -e line 1.
    Useless use of a constant in void context at -e line 1.
    1
    
  6. or download this
    PP(pp_aslice)
    {
    ...
        }
        RETURN;
    }