DECLARE
current_date Date;
BEGIN
current_date := SYSDATE;
DBMS_OUTPUT.PUT_LINE('Today is: ');
DBMS_OUTPUT.PUT_LINE(current_date);
END;

