Help for this page

Select Code to Download


  1. or download this
    while (<FILE>)
    {
    ...
            print "@data\n";
        }
    }
    
  2. or download this
    my %info;
    while (<>)
    ...
    {
        print "$_ ", join(' ', @{$info{$_}}), "\n";
    }