Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    
    ...
        push @y3, shift @val;
        push @y4, shift @val;
    }
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    
    ...
        chomp;
        push @val, [ split ];
    }
    
  3. or download this
    chomp, push @val, [ split ] while <>;
  4. or download this
    print $val[3]->[0];