[EMAIL PROTECTED] wrote:
>
> Does anyone know a good way to print from REBOL? I only need to print
> text.
>
Assuming that you are using a system that has pseudo-file-names that
refer to hardware devices (or communication channels), you can use
'write directed to such a file name.
For example, in w95, you can say either
>> write %//prn "Hello, world!^(page)"
or
>> write %//lpt1 "Hello, world!^(page)"
Note the page eject (form feed) at the end, which is handy for
continuous-form printers, and necessary for most page-mode printers
(e.g., ink jet) that I've tried.
-jn-