Displaying 1 result from an estimated 1 matches for "launch_repl".
2016 Sep 30
0
A package that traces base functions
I'm working on a package that implements a REPL.? A typical interaction with the package might look like:
> launch_REPL()REPL> 1 + 1[1] 2REPL> QDo you wish to save results? [y/n]REPL> ygoodbye ...>
This is very similar to what happens when in `browser()`: the REPL evaluates arbitrary R user expressions and offers some additional commands.
In order to implement functionality required for the REPL I must t...