in reply to Re: Complex conditional statements
in thread Complex conditional statements

A unless B or (C and D) if (E and F)
and
I think that's difficult to understand, even in English. I would definitely recommend if !B then A else if (E and F) then (C and D)

Demonstably difficult to understand, because I read it more like:

if (E && F) { unless (B || (C && D)) { A } }