Example These two statements do the same: 1: unless (cond) { bla; } else { blubb; } 2: if (cond) { blubb; } else { bla; }