Nothing
import_stdlib_modules <- function(engine, modules, env = NULL) {
if (is.null(env)) {
env <- engine$get_env()
}
for (module in modules) {
exprs <- engine$read(sprintf("(import %s :refer :all)", module))
engine$eval(exprs[[1]], env = env)
}
env
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.