in reply to what is benefit of unless ?
in thread unless statements

It is not similar statement.

$a = 10; print "if stmt true" if ($a == 10); print "unless" unless ($a == 10);

Prasad