SET SERVEROUTPUT ON
DECLARE ch1 VARCHAR2(15) := 'le monde !'; BEGIN DBMS_OUTPUT.PUT_LINE('Bonjour ' || ch1); END; /