Help for this page

Select Code to Download


  1. or download this
    C:\test>perl -MO=Deparse,p -e" print (shift @a), (shift @a), "\n";"
    print(shift @a), shift @a, \'n';
    -e syntax OK
    
  2. or download this
    print( (shift @a), (shift @a), "\n" );
    
  3. or download this
    print shift @a, shift @a, "\n";