eq!() { /* proc-macro */ }
Build a symbolic equation using natural math syntax.
use symplex::prelude::*; use symplex::eq; let ctx = Context::new(); let x = ctx.symbol("x"); let equation = eq!(ctx, x^2 + x = 6);