- or download this
sub document_if {
my ($cond,$code) = @_;
...
print "\n---\n";
};
};
- or download this
document_if( 1 == 0, q{
print "The sky has fallen down.\n";
});
- or download this
use strict;
use B::Deparse;
...
print "\n---\n";
};
};
- or download this
document_if( 1 == 0, sub{
print "The sky has fallen down.\n";
});