wikibooks_rpn_calc_test_ver_gw 0.1.0

rust 공부
Documentation
  • Coverage
  • 50%
    1 out of 2 items documented1 out of 2 items with examples
  • Size
  • Source code size: 1.89 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 123.56 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • freehunter91

RPN Calc

REvers Polist notation (RPN) Calc.

let src = String::from("1 2 + 3 * ");
let a = rpn_calc::eval(src).unwrap();