Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/lonnen/erlang-rpn

a simple rpn calculator module in erlang
https://github.com/lonnen/erlang-rpn

Last synced: about 1 month ago
JSON representation

a simple rpn calculator module in erlang

Awesome Lists containing this project

README

        

An RPN calculator written in erlang

```
1> c(calc).
{ok,calc}

2> calc:rpn_test().
ok

3> calc:rpn("90 34 12 33 55 66 + * - + -").
4037
```