sub testUnless { my $v = 'Navidson'; unless ( $v ) {}; # returns 'Navidson' } sub testIfNot { my $v = 'Holloway'; if ( ! $v ) {}; # returns nothing }