Data Type Oracle PLSQL

SQL>
SQL>
SQL> declare
  2      v1 clob := 'abc';
  3  begin
  4      If v1 = 'abc' then null; end if;
  5
  6  end;
  7  /
PL/SQL procedure successfully completed.
SQL>