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

https://github.com/callumacrae/cpp-calculator

i am learning c++ apparently
https://github.com/callumacrae/cpp-calculator

Last synced: 19 days ago
JSON representation

i am learning c++ apparently

Awesome Lists containing this project

README

        

# Calculator

> My first c++ project

This is for me to learn from, not for other people to learn from!

## Setup

Install dependencies:

```
brew install cmake
```

To compile:

```
cmake .
make
```

To execute:

```
./out/calculator
```

## Tests

This project uses Catch2 for running tests, which is fetched by cmake.

To run, follow compilation steps from above and execute:

```
./out/tests
```

## To do maybe

- Variables (`a = 2` then `2 * a`)