In the dbms_output.put_line you have to concatenate chr(10) to the end of the line. This is the carriage returns character number. So when oracle reads it, it enters a carriage return.

Ex:
dbms_output.put_line('Hello'||chr(10));