The following code temporarily stores some information to the clipboard:
write-clipboard "Some important info" ;== true
; close Red console or Red program
print read-clipboard ;== Some important info
This can be used as a means of communication between two Red apps. The info stays on the clipboard until the OS restarts or until another program writes to the clipboard.