Help for this page

Select Code to Download


  1. or download this
    ABCD
    EFGH
    GHIJ
    
  2. or download this
    ABCD\n
    EFGH\n
    GHIJ\n
    
  3. or download this
    my @array;
    while ( my $line = <STDIN> ) {
    ...
    foreach ( @array ) {
        print "$_\t";
    }
    
  4. or download this
    {
        local $, = "\t";
        print @array, "\n";
    }