Example
Assume the following sequence of Report-Writer statements:
.block
.print 'Line 1' .newline
.print 'Line 2' .newline
.top
.tab + 2 .pr 'more line 1' .newline
.bottom .lineend
.print 'Last line in block' .newline
.endblock
You would get the following output:
Line 1 more line 1
Line 2 Last line in block