Help for this page

Select Code to Download


  1. or download this
    # test.pl
    while (my $line = <>) {
      chomp $line;
      print qq{$line\n}; # yes I know, pointless use of chomp
    }
    
  2. or download this
    > perl test.pl < test.pl
    # test.pl
    ...
      chomp $line;
      print qq{$line\n}; # yes I know, pointless use of chomp
    }
    
  3. or download this
    while (my $item = pop @my_array) {
      # do stuff with $item
    }