Skip to content

squiidz/yard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Yard crates.io version Codeship Status for squiidz/ShuntingYard

shunting yard algorithm in rust

alt_tag

Example

extern crate yard;

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