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
When parsing or serializing an expression, we need to get all the currently defined variables and add them to the dictionary. That way, cat := 3 followed by cat = will work correctly
The text was updated successfully, but these errors were encountered:
Also, the := parser might have to be rewritten a little bit to do some custom parsing for the right side. Let's first see how the next MathJson version handles various things.
When parsing or serializing an expression, we need to get all the currently defined variables and add them to the dictionary. That way,
cat := 3
followed bycat =
will work correctlyThe text was updated successfully, but these errors were encountered: