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
- Host: GitHub
- URL: https://github.com/callumacrae/cpp-calculator
- Owner: callumacrae
- Created: 2021-06-15T20:22:13.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-29T18:06:27.000Z (almost 4 years ago)
- Last Synced: 2025-04-01T21:07:56.324Z (24 days ago)
- Language: C++
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`)