symoxide 0.1.2

Intermediate Representation and Transformations for Computer Algebra Systems
Documentation
1
2
3
4
5
6
7
use symoxide::operations as ops;
use symoxide::variables;

fn main() {
    let (x, y) = variables!("x y");
    println!("{}", ops::add(&x, &y));
}