powered by
Run the R language server
run(debug = FALSE, host = "localhost", port = NULL)
set TRUE to show debug information in stderr; or it could be a character string specifying the log file
TRUE
the hostname used to create the tcp server, not used when port is NULL
port
NULL
the port used to create the tcp server. If NULL, use stdio instead.
if (FALSE) { # to use stdio languageserver::run() # to use tcp server languageserver::run(port = 8888) }
Run the code above in your browser using DataLab