An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          


calcplusplus


TUI calculator written in C++ using FTXUI



Stargazers
Last commit
Issues

## 💾 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
```