Previous Topic

Next Topic

Book Contents

Book Index

PrintReplace statement

This outputs the value of expression to the output stream over-writing the last line with new content. See Print statement. If PrintReplace is called without a Print being called beforehand, then it will function as for Print.

Syntax

PrintReplace [expression]

Example usage:

Print "Hello"

Print "Replaced"

PrintReplace "More Replacement"

PrintReplace "Show This"

Print "Bye"