This repository has been archived on 2022-07-24. You can view files and clone it, but cannot push or open issues or pull requests.
itconfig/examples
2022-07-22 19:15:38 +03:00
..
calc.rs example/calc: add help message 2022-07-22 19:15:38 +03:00
README.md example/calc: add help message 2022-07-22 19:15:38 +03:00

Examples

Calculator

Fun calculator based on environment variables

E=2*2-1-1+5*3-10 cargo run --example calc --all-features

Limits:

  • Supports *, +, -
  • You cannot start from a negative number. E=-10. Solution: start from 0. E=0-10.