R/interface.R
julia_command.Rdjulia_command evaluates string commands in julia
without returning the result back to R.
However, it may evoke julia display system,
see the documentation of the argument `show_value` for more details.
If you need to get the evaluation result in R, you can use
julia_eval.
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_command("a = sqrt(2);")
}