Crates.io | tazui |
lib.rs | tazui |
version | 0.1.1 |
source | src |
created_at | 2023-02-02 22:12:56.503271 |
updated_at | 2023-02-02 22:28:09.478214 |
description | Tazui is a terminal calculator |
homepage | |
repository | https://github.com/BaGoA/Tazui |
max_upload_size | |
id | 775144 |
size | 189,174 |
Tazui is terminal calculator written in Rust.
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
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:
Tazui library is free software, you can redistribute it and/or modify it under the terms of the GNU General Public License.