in reply to Re^3: Specifying a range through a variable
in thread Specifying a range through a variable

Also something like this work to:
my $a = 1; my $b = 10; my @range = $a .. $b; for my $x (@range) { print "$x\n"; }
So I could parse the start and end of range into variables. Cool. Thanks.