#calculator #terminal #debugging #command #debug-mode #terminal-calculator

app tazui

Tazui is a terminal calculator

2 releases

0.1.1 Feb 2, 2023
0.1.0 Feb 2, 2023

#11 in #debug-mode

Custom license

125KB
306 lines

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.

Here are some examples:

Licensing

Tazui library is free software, you can redistribute it and/or modify it under the terms of the GNU General Public License.

Dependencies

~1–11MB
~84K SLoC