Help for this page

Select Code to Download


  1. or download this
    while (<>) {
        chomp;
    ...
        @a = split if !/^==/;
        print "@a\n";
    }
    
  2. or download this
    while (<>) {
        chomp;
    ...
        my @a = split;
        print "@a\n";
    }