show/hide this revision's text 8 this is how the example was intended to look. Bold for user input, italic for a control character.; added 1 characters in body

I'm reading the Llama (Learning Perl) book, book, and working on the exercises. And for this exercise:

Write a program that reads a list of strings on separate lines until end-of-input and prints out the list in reverse order. [. . .]

Well, I already figured out a simpler approach (I remembered you could use reverse on arrays... Perl is so... awesome so far), but I am wondering why this one isn't working.

#!/usr/bin/perl

use 5.010;

chomp(@strings = <STDIN>);

foreach (@strings){
    push @revstrings, $_;
}

while($i++ <= scalar @revstrings){
    say pop @revstrings;
}

It goes like this:

$ ./first**one
one
twothree** *[^D]*
three

[^D]
three
two
$

the output is the same if I change the <= in the while loop to just <.

show/hide this revision's text 7 Rollback to Revision 5

I'm reading the Llama book, (Learning Perl)book, and working on the exercises. And for this exercise:

Write a program that reads a list of strings on separate lines until end-of-input and prints out the list in reverse order. [. . .]

Well, I already figured out a simpler approach (I remembered you could use reverse on arrays... Perl is so... awesome so far), but I am wondering why this one isn't working.

#!/usr/bin/perl

use 5.010;

chomp(@strings = <STDIN>);

foreach (@strings){
    push @revstrings, $_;
}

while($i++ <= scalar @revstrings){
    say pop @revstrings;
}

It goes like this:

$ ./first  

one**one two
three

[^D]three** *[^D]* three two $

the output is the same if I change the <= in the while loop to just <.

show/hide this revision's text 6 Rollback to Revision 3

I'm reading the Llama (Learning Perl)book, book, and working on the exercises. And for this exercise:

Write a program that reads a list of strings on separate lines until end-of-input and prints out the list in reverse order. [. . .]

Well, I already figured out a simpler approach (I remembered you could use reverse on arrays... Perl is so... awesome so far), but I am wondering why this one isn't working.

#!/usr/bin/perl

use 5.010;

chomp(@strings = <STDIN>);

foreach (@strings){
    push @revstrings, $_;
}

while($i++ <= scalar @revstrings){
    say pop @revstrings;
}

It goes like this:

$ ./first**one
one
twothree** *[^D]*
three

[^D]
three
two
$

the output is the same if I change the <= in the while loop to just <.

show/hide this revision's text 5 added 60 characters in body
show/hide this revision's text 4 Fixed example
show/hide this revision's text 3 edited tags
show/hide this revision's text 2 edited tags
show/hide this revision's text 1