Was this helpful?
.Bottom Statement--Make Current Line the Bottom Line
The .bottom statement changes the current output line to the bottom line in the current block.
You can use the .bottom statement only while block mode is in effect (that is, after a .block statement, but before the corresponding .endblock statement). It moves the current output line to the current bottom line in the block. The character position on that line is one space beyond the last character printed on that line.
This statement has the following format:
.bottom | .bot
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
Last modified date: 01/30/2023