Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lonnen/erlang-rpn
- Owner: lonnen
- License: mpl-2.0
- Created: 2014-10-17T06:28:29.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-17T06:34:15.000Z (about 10 years ago)
- Last Synced: 2024-04-15T02:58:22.315Z (7 months ago)
- Language: Erlang
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
An RPN calculator written in erlang
```
1> c(calc).
{ok,calc}2> calc:rpn_test().
ok3> calc:rpn("90 34 12 33 55 66 + * - + -").
4037
```