Perl Programming/Keywords/unless

The unless keyword

unless is a flow-control keyword. The EXPRESSION is called the condition.

Syntax

  unless EXPRESSION

Example

go_outside() and play() unless $it_is_raining;

See also