Help for this page

Select Code to Download


  1. or download this
    $ perl -le " $f = 1,2,3 ; print $f"
    1
    
    ...
    print $f;
    -e syntax OK
    
  2. or download this
    $ perl -le " $f = ( 1,2,3 ); print $f"
    3
    
    ...
    $f = ('???', '???', 3);
    print $f;
    -e syntax OK