Hello,
how to tell Gambit to use the standard output for "pp" and the standard error for "raise"?
$ cat test.scm (display "line1\n") (pp "line2") (raise "error")
$ gsi test.scm >x1 2>x2 "line2" *** ERROR IN "test.scm"@3.1 -- This object was raised: "error" $
The expected behaviour is that nothing is output to the console, the file "x1" contains "line1" and "line2", and the file "x2" contains the error message.
Thanks!