Initializing help system before first use

Rclearerr

Rclearerr


Purpose
Clear the last error code and message.
Synopsis
procedure Rclearerr
Example
The following example prints an error message in case of errors in R evaluations and subsequently clears the error information:
 Reval('missingfunction()')
 if Rerrcode<>0 then
  writeln('Something went wrong: ', Rerrmsg)
  Rclearerr
 end-if
Related topics