git clone https://github.com/codeitlikemiley/calc
cd calc
git checkout cli
cargo build --release
# copy to your bin directory
cp target/release/calc ~/.local/bin/calc
calc
Enter an expression (e.g., 5 + 3) or 'exit|clear':
3 + 5 // 8
3 + 5 //8
3+3+3 //9
3+(2*2)-1 //6

git clone https://github.com/codeitlikemiley/calc
cd calc
git checkout gui
cargo build --release
# copy to your bin directory
cp target/release/calc ~/.local/bin/calg
# copy to /Applications on Mac
Note: if you will use both terminal and gui better alias gui to `calg`
- invoke command
calg
to open it and start pressing buttons

git clone https://github.com/codeitlikemiley/calc
cd calc
git checkout dioxus
dx bundle --release
# copy to your bin directory
cd dist/bundle/
# install using dmg file by double clicking it
- Usage , open with
cmd + space
and typecalculator

- Basic arithmetic operations
- Parentheses Operations
- Chain Operations
- Clear Screen
- Exit
- REPL mode
- use Arrow Key Up and Down to navigate through history
- Show a Simple GUI Calculator using Iced
- Move Logic of Evaluating Expression to Update
- Add Test Basic Operations we can do
- use tailwindcss
- use logic of calculator
- build a simple crossplatform gui calculator