Skip to content

Latest commit

 

History

History
41 lines (24 loc) · 1.54 KB

README.md

File metadata and controls

41 lines (24 loc) · 1.54 KB

Tazui

Tazui is terminal calculator written in Rust.

Build

Build of Tazui is made by Rust tool Cargo

To build Tazui, you can use the following command:

*cargo build* to compile in debug mode
*cargo build --release* to compile in release mode

To launch Tazui units tests, you can use the following command:

*cargo test* to launch tests in debug mode
*cargo test --release* to launch tests in release mode

Documentation

Tazui use Taz library to evaluate expression given by user. To interact with user, we have created a terminal user interface based on Crossterm library.

Tazui application can be launched by Cargo with following command:

*cargo run* to launch in debug mode
*cargo run --release* to launch in release mode

Then we have following view

To quit Tazui application, we can write quit or use ESC key.

Tazui can work with simple expression and return result in variable named last. This can be reused in other expression.

Moreover, we can define variable with an expression. Tazui evaluate it and put result in this variable. Then we can reuse these variables in other expression.

We can also define reusable expression. Tazui evaluate it and put it name and current result in variables. Then we can modify variables and the expression is updated automaticaly.