Alpha is a simple, lightweight terminal calculator designed for quick arithmetic and basic mathematical operations from your command line.
- Basic arithmetic: Addition, subtraction, multiplication, division
- Parentheses: Supports order of operations
- Decimal numbers: Handles floating-point math
- Simple interface: Enter expressions, get answers
- No dependencies: Works out of the box
Run Alpha from your terminal and start typing expressions:
$ alpha
> 2 + 2
4
> 3 * (7 + 1)
24
> 10 / 3
3.3333333
> exitClone the repository and run:
git clone https://github.com/Paran-oid/Alpha.git
mkdir build
cd build
cmake ..
make
# If compiled, e.g. for C/C++
make
./Alpha- Addition (
+) - Subtraction (
-) - Multiplication (
*) - Division (
/) - Grouping (
())
Feel free to open issues or submit pull requests for new features, bug fixes, or documentation improvements!
Made with ❤️ by Paran-oid