Hi, I wanna get Perl to print a list if letters, I know how to get it to print numbers (1, 2, 3 ect, ect) but I would like to print letters (a, b, c...... z, aa, ab....... az, ba......)
I've got the code below:
$x = a;
do{
print "$x\n";
$x++;
}while($x < 5);
$x started as 1 so I got 1...