Displaying 1 result from an estimated 1 matches for "perlinputfile".
2004 Feb 15
1
source() function and crash of R!
...he method start_sharedR() only starts the R interpreter if it wasn't started yet.
The method send() write the commands to be sent to R in a input file (one for each send()), that will be processed automatically by R.
To load this input files from R I use the command (in the R side):
source(PERLINPUTFILE)
But the problem is that if the source of the file that is loaded by R has some error, the R interpreter crashes!
Here's an example of code that won't be loaded by R:
x = 1..100
The problem is the crash of the interpreter, since I really need to keep it running even if it uses/loads s...