Help for this page

Select Code to Download


  1. or download this
    my @letters = ('a'..'z');
    my $random_letter = $letters[int rand @letters];
    
  2. or download this
    my @letters = ('a'..'z', 'A'..'Z');
    print $letters[int rand @letters], "\n";