package Book::Compose; use Apache::Constants qw(OK); sub header { my $r = shift; $r->send_http_header("text/plain"); $r->print("header text\n"); return OK; } sub body { shift->print("body text\n"); return OK; } sub footer { shift->print("footer text\n"); return OK; } 1;