set serveroutput on


declare

 v1 boolean;

begin

 v1 := 100 > 5;


 if v1 then

   p('맞다');

 else

   p('아니다');

 end if;


end;


+ Recent posts