Closed stuartskelton closed 8 years ago
I am unsure how to set up in the test suite.
Patch looks great, one small change please, I have a particular way in which I would like to do exception handling. Basically following this pattern:
my @var;
eval {
@var = something();
1;
} or do {
warn $@;
};
Thanks again :)
This is a fix for #28, in the process, I don't have to update #26, as the predication is already eval'ed.