- or download this
sub body {
my ($tab,$code,$opt) = @_;
...
&$code;
line($tab,"</$tag>");
}
- or download this
body( sub {
header( sub {
...
... some footer code for the body ...
});
});
- or download this
sub body {
my ($tab,$opt) = @_;
...
footer($tab + 1, @{$opt->{footer}}) if $opt->{footter};
line($tab,"</$tag>");
}
- or download this
body(
header => sub {
...
);
},
);