[REBOL] Re: Calling a Rebol Script form a CGI
From: dhsunanda:g:mail at: 27-Dec-2008 8:36
One possibility is to redefine 'print before the call: saved-print: get in system/words 'print print: func [data][] ----code here to call other script----- set in system/words 'print :saved-print You may also need to use the same trick on 'prin and 'probe. The replacement function could do something other than discard the output -- for example, it could write it to a log file. Sunanda