ofer71
Global Moderator
Joined: 27 Dec 2005 Posts: 1930 Location: Israel
|
|
|
|
There is no way to clear the screen using REXX only.
You can, however, code a tiny Assembler program, something like this (taken from Google Groups):
| Code: |
CLS CSECT
CLS RMODE ANY
STLINENO LINE=1,CLEAR=YES
BR 14
END
|
O. |
|