
Delete an object from the Julia Main environment
delete_julia_obj.Rd
This function removes a variable or object from the Julia Main
module using JuliaCall.
It is useful for cleaning up or resetting objects defined in the Julia environment from R.
Examples
if (FALSE) { # \dontrun{
JuliaCall::julia_command("x = 10") # Define a Julia variable
delete_julia_obj("x") # Delete it
} # }