This function evaluates Julia code, given as a string, in Julia,
and translates the result back to R.
Usage
juliaEval(expr)
Value
The value returned from Julia, translated to an R data structure.
If Julia returns nothing, an invisible NULL is returned.
This is also the case if the last non-whitespace character of expr
is a semicolon.
Arguments
expr
Julia code, given as a one-element character vector
Details
If the code needs to use R variables, consider using juliaLet
instead.