Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

See also

FootingHeadingPrinter

Example

Code Block
For I = 1 To 100
       If Not(Mod(I,5)) Then Page
       Print I, Mod(I,5)
Next
/* The current output device moves to the top of the next page at every fifth line. */