A command line math evaluator.
Find a file
2024-08-28 10:40:03 -04:00
src gave context items module structure, moved context build to a new method, and implemented empty and set flags 2024-08-28 10:40:03 -04:00
.gitignore significant code clean up, better "keyword" matching, added help text 2022-06-13 13:49:34 -04:00
Cargo.toml changed arg parse to use pico-args 2024-08-22 13:00:20 -04:00
deny.toml added auditing tools 2024-07-09 14:21:43 -04:00
LICENSE added license and metadata 2024-03-04 20:12:46 -05:00
README.md changed project name to reflect cargo package 2024-03-04 20:10:38 -05:00
sbom.xml added auditing tools 2024-07-09 14:21:43 -04:00

quickmath (qm)

A small, pretty command line calculator.

Features expression evaluation, variable assignment, an interactive mode, pretty output, and a variety of preset constants and functions focused on pure mathematics, data science, and computer science.

More information is available on the project wiki.

Installation

Manual Install

Release Binary Copy the compiled binary from the releases page to a directory in $PATH, such as /usr/bin/.
Compile from Source Compile using cargo with the command cargo build --release and copy the file from target/release/ to a directory in $PATH, such as /usr/bin/.

Package Managers

Cargo: quickmath Install the package using Cargo with the command cargo install quickmath.

Libraries