leave line empty line in Pascal

In Pascal, you can leave an empty line by using the writeln procedure without any arguments. Here's an example:

writeln;

This will output a blank line to the console. You can place this line anywhere in your Pascal program where you want to create an empty line.