I am trying to use a loop to create variables such as $line_a, $line_b but use a variable to do that. So if I say:
foreach $alpha ( a .. b ) { $line_$alpha = "somenum"; }
I get an error. I have tried the dot notation. Is it impossible to use variables within variables?
Thanks in advance;
Sherman