Clipboard
The global byte array CLIPBOARD allows accessing the system clipboard. It can be read randomly as CLIPBOARD[i] but can be written only in assignments.
Example:
c=CLIPBOARD[5]
PRINT CLIPBOARD[6]
CLIPBOARD[4]=125 |
but not
INPUT CLIPBOARD[3]: ! Syntax error ! |
|