Rust CLI Calculator is a command-line calculator built using Rust. It combines the power and safety of Rust with a user-friendly interactive interface. This calculator allows you to perform basic arithmetic operations in an easy-to-use command-line environment.
Here's a quick demo of the Rust CLI Calculator in action:
- Arithmetic Operations: Supports addition, subtraction, multiplication, and division.
- Interactive User Interface: Easy-to-use interface using arrow keys for operation selection.
- Error Handling: Graceful handling of common errors like division by zero.
- Cross-Platform: Runs on various platforms where Rust is supported.
To install and use the Rust CLI Calculator:
- Clone the repository:
git clone https://github.com/your-username/rust-cli-calculator.git cd rust-cli-calculator
- Build with Cargo:
cargo build --release
- Run the application in terminal:
cargo run