package Fun::Bench;
use Apache::RequestRec;
use Apache::RequestIO ();
use Apache::Const -compile => qw(OK);



sub handler {
  my($r) = shift;
  $r->content_type('text/html');
  $r->print('Hello ');
  $r->print('World');
  return OK;
}

1;
