R/interface.R
julia_exists.Rdjulia_exists returns whether a julia object with the given name exists or not.
julia_exists(name)
if (identical(Sys.getenv("AUTO_JULIA_INSTALL"), "true")) { ## julia_setup is quite time consuming
## doing initialization and automatic installation of Julia if necessary
julia_setup(installJulia = TRUE)
julia_exists("sqrt")
}