https://github.com/claudemuller/rpncalc
A Reverse Polish Notation Calculator
https://github.com/claudemuller/rpncalc
c rpn-calculator
Last synced: 2 months ago
JSON representation
A Reverse Polish Notation Calculator
- Host: GitHub
- URL: https://github.com/claudemuller/rpncalc
- Owner: claudemuller
- Created: 2023-08-02T15:09:48.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-08-20T11:07:01.000Z (almost 2 years ago)
- Last Synced: 2025-02-14T18:33:43.252Z (4 months ago)
- Topics: c, rpn-calculator
- Language: C
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Reverse Polish Notation Calculator
[](https://github.com/claudemuller/rpncalc/actions/workflows/c.yml)A [Reverse Polish Notation Calculator](https://en.wikipedia.org/wiki/Reverse_Polish_notation) written in C.
## Build
```bash
make build
```## Run
```bash
make run
```## Build Debug
```bash
make debug
```## Run Tests
```bash
make test
```## Build Tests Debug
```bash
make test-debug
```## Clean
```bash
make clean
```