Help for this page

Select Code to Download


  1. or download this
    >perl -wMstrict -le
    "my @ra = (1,2,3,4,5);
     { $\" = ''; print qq{@ra}; }
    "
    
  2. or download this
    $ perl -Mstrict -wle '
    > my @arr = ( 1, 2, 3 );
    ...
    123
    123
    $
    
  3. or download this
    $ perl -Mstrict -wle '
    my @arr = ( 1, 2, 3 );
    > print do{ local $" = q{}; qq{@arr} };'
    123
    $