if (X) { ... } else { ... } #### if (X) { ... } if (not X) { ... } #### unless (X) { ... } else { ... } if (not X) { ... } if (not not X) { ... } #### print ... unless $quiet; # I want to print. exit if $done; # I might want to exit here. exit unless $stay; # I want to exit here, but apparently # something is holding me back.