https://github.com/therealpad/calculator
calculator to handle infinite numbers and priorities
https://github.com/therealpad/calculator
cmake cpp design-patterns object-oriented-programming proxy-design-pattern unit-testing
Last synced: 11 months ago
JSON representation
calculator to handle infinite numbers and priorities
- Host: GitHub
- URL: https://github.com/therealpad/calculator
- Owner: TheRealPad
- Created: 2024-02-28T02:00:22.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-04T18:22:31.000Z (almost 2 years ago)
- Last Synced: 2024-04-24T05:24:22.031Z (almost 2 years ago)
- Topics: cmake, cpp, design-patterns, object-oriented-programming, proxy-design-pattern, unit-testing
- Language: C++
- Homepage:
- Size: 36.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# Calculator
a c++ calculator to handle infinite numbers
## How to use
### 1. Create a directory build and go inside
```bash
mkdir build && cd build/
```
### 2. Build the project
```bash
cmake ..
```
### 3. Build the binaries
```bash
make
```
### 4. Run the project
```bash
# go back to the root of the project
./johnDoe
```
### 5. Unit test
```bash
./unit_test
```