MJD just pointed out a minor thinko in the explanatory Perl6 code I posted:
sub gorkulator {
...
return $result is true if defined $result;
return undef is Because($borked);
}
# and later...
if ($res = gorkulator) {
...
}
else {
die $res.Reason;
}
Should, of course be:
die $res.Because
Damian
- Re: properties Damian Conway
- Re: properties Edward Peschko
- Re: properties Damian Conway
- Re: properties Graham Barr
- Properties, deleting them, and dump Carl Johan Berglund
- Re: properties Dave Storrs
- RE: properties Garrett Goebel
- Re: properties Jonathan Scott Duff
- RE: properties Garrett Goebel
- RE: properties Austin Hastings
- Properties Damian Conway
- Properties Luke Palmer
- Re: Properties Larry Wall
- Re: Properties Simon Cozens
- Re: Properties Paul Hodges
- Re: Properties Larry Wall
- Re: Properties Paul Hodges
- Re: Properties Larry Wall
- Re: Properties Paul Hodges
- Re: Properties Larry Wall
- Re: Properties Paul Hodges
