Márcio Oliveira wrote:
> Hi All (again)!
>
>I have another question. How I can create a incremental var's name ?
>
> Ex:
>
>Read "n" numbers and create a var with the name terminate with the
> sequence number in a loop:
>
> $n = 4;
>
> while ($num ne $n) {
>
> create the "numbe
MArcio,
why you don't use an array ?
Or you can gereate them at runtime via "eval" ...
HTH
Kris
___
Perl-Unix-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
Hi All (again)!
I have another question. How I can create a incremental var's name ?
Ex:
Read "n" numbers and create a var with the name terminate with the
sequence number in a loop:
$n = 4;
while ($num ne $n) {
create the "numbered var ";
$num++;
}
in this example, the pr