Help for this page

Select Code to Download


  1. or download this
    $\ = "\n";
    my @a = qw( One Two Three );
    ...
      print @a;
      print "@a";
    }
    
  2. or download this
    One,Two,Three
    One Two Three
    OneTwoThree
    One,Two,Three