revpolnot 1.0.1

A simple Infix to Reverse Polish notation converter lib and executable
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# revpolnot

A simple Infix to Reverse Polish notation converter.

For example:
```
4 - (1 - 6)
```

becomes
```
4 1 6 - -
```