package Book::SendAlphaNum; use strict; use warnings; use Apache::RequestRec (); use Apache::RequestIO (); use Apache::Const -compile => qw(OK); sub handler { my $r = shift; $r->content_type('text/plain'); $r->print(1..9, "0\n"); $r->print('a'..'z', "\n"); Apache::OK; } 1;