Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
@List = &List("A", "H");
print "@List\n";
sub List($$) {
my ($Start, $End) = @_;
# ord - converts character to its ascii value
my @Nums = ord($Start) + 1 .. ord($End) - 1;
@RetChars = map(chr, @Nums); # Convert ascii list to character list
}