On 4/17/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Note that unless no longer allows an else
Hmm, that's interesting. I don't _think_ I'm opposed, but maybe I am.
The main case that I can see this limiting me is where I like to put
my error conditions at the end of my code, out of the way, like so:
unless $.something {
$.something = UsefulData.new;
}
else {
die "Something exists!";
}
I don't want to switch the order of those blocks, and switching the
condition to "if !$.something" defeats the whole purpose of unless.
Luke