You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, thank you for this fantastic package.
Maxima is a great symbolic algebra system and it's nice that julia can interact with it.
For now the expression from julia side does not allow semicolon ";" at the end.
For example, mcall(m"1+2;") will return error.
Although mcall(m"1+2") is natural, multi-line expressions like
mcall(m"1+2;3*4")
seem weird.
I think the problem is related to the split function in mexpr.jl.
In particular, I found
First, thank you for this fantastic package.
Maxima is a great symbolic algebra system and it's nice that julia can interact with it.
For now the expression from julia side does not allow semicolon ";" at the end.
For example,
mcall(m"1+2;")
will return error.Although
mcall(m"1+2")
is natural, multi-line expressions likeseem weird.
I think the problem is related to the
split
function inmexpr.jl
.In particular, I found
The following seems strange to me.
Maxima.jl/src/mexpr.jl
Lines 136 to 138 in 7be4dbd
I am wondering if it should be
p[j]
instead ofp[i]
.The text was updated successfully, but these errors were encountered: