symoxide 0.1.2

Intermediate Representation and Transformations for Computer Algebra Systems
Documentation
1
2
3
4
5
6
use symoxide as sym;

fn main() {
    let expr = sym::parse("foo[bar, baz, sin(x)] * cos(x)");
    sym::show_dot(&expr, "xwindow");
}