https://github.com/budchirp/calcplusplus
TUI calculator written in C++ using FTXUI
https://github.com/budchirp/calcplusplus
calculator cmake cpp ftxui
Last synced: 3 months ago
JSON representation
TUI calculator written in C++ using FTXUI
- Host: GitHub
- URL: https://github.com/budchirp/calcplusplus
- Owner: budchirp
- License: gpl-3.0
- Created: 2023-08-14T08:08:31.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-18T17:09:23.000Z (almost 2 years ago)
- Last Synced: 2025-07-26T00:28:58.169Z (11 months ago)
- Topics: calculator, cmake, cpp, ftxui
- Language: C++
- Homepage:
- Size: 25.4 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
calcplusplus
TUI calculator written in C++ using FTXUI
## 💾 Getting started
### Requirements
1. C++ compiler
2. CMake & Make
### How to start?
1. Clone the repo
```sh
git clone https://github.com/budchirp/calcplusplus && cd calcplusplus
```
2. Compile the code
```sh
mkdir build && cd build
cmake .. && make -j$(nproc)
```
> NOTE: If you're using fish, remove the `$` sign.
3. Have fun!
```sh
./calcplusplus
```