blob: fded2522af912055f2470458713599bdbe934b87 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# rpncalc
simple rpn calculator inspired by emacs calc
To build:
```sh
DIR=build
meson $DIR
cd $DIR
ninja
```
To execute:
```sh
./rpncalc
```
Installation will be possible in future releases
|