Timothy Johnson wrote:
> Just for the sake of one more way to do it:
> 
> ###########################
> 
> use strict;
> use warnings;
> 
> my %numbers;
> my $letter = 'a';
> my $userinput = 23;
> 
> foreach(1..26){
>     $numbers{$_} = $letter;
>     $letter++;
> }

Or:

my %numbers;

@numbers{ 1 .. 26 } = 'a' .. 'z';


John
-- 
use Perl;
program
fulfillment

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to