Using Rgui.exe, after submitting the lines below:
library(shiny)
runExample()
runExample('01_hello')
How is it possible to release the R interpreter without having to type ESC?
In other words, I'm looking for something similar to session$onSessionEnded, so that when the browser tab is closed, the R interpreter is released to receive new instructions.
Is there any possibility? I consider using ESC an abnormal way to kill a process.
Best,