For example instead of saying "if not <condition>" you can also say "unless <condition>" which is more natural imo.
Both keywords work in postfix form, and this is how I usually use 'unless' so it reads more like a sentence.
do_thing() unless ($a == 1); do_thing() if ($a != 1);
unless a a = 4 end return x unless y return z
For example instead of saying "if not <condition>" you can also say "unless <condition>" which is more natural imo.