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

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

Awesome Lists containing this project

README

        

# Reverse Polish Notation Calculator
[![unit tests](https://github.com/claudemuller/rpncalc/actions/workflows/c.yml/badge.svg)](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
```