NOT is a logical negation operator
SQL> BEGIN 2 IF NOT FALSE THEN 3 dbms_output.put_line('True.'); 4 END IF; 5 END; 6 / True. PL/SQL procedure successfully completed. SQL>