Yard crates.io version Codeship Status for squiidz/ShuntingYard

shunting yard algorithm in rust

alt_tag

Example

``` rust extern crate yard;

fn main() { let equation = "1 + 2 * 3"; println!("{}", yard::evaluate(equation).unwrap()); }

```