use strict; use CGI::Pretty qw(book chapter); # for pretty XML my $c = new CGI; print $c->book( {-title=>"Programming Perl", -authors=>" Larry Wall, Tom Christiansen, Jon Orwant"}, $c->chapter({-number=>1},"An Overview of perl"), $c->chapter({-number=>2},"Bits and Pieces"), $c->chapter({-number=>3},"Unary and Binary Operators"), ); #### An Overview of perl Bits and Pieces Unary and Binary Operators