/elixir-rpn-process

RPN calculator in Elixir w/ process holding state, for https://www.dailydrip.com/topics/elixir/drips/elixir-weekly-drip-2-and-exercise-reverse-polish-notation-calculator and https://www.dailydrip.com/topics/elixir/drips/elixir-weekly-drip-3-and-exercise-supervised-rpn-calculator-and-tape-printer

Primary LanguageElixir

Rpn

TODO: Add description

Installation

If available in Hex, the package can be installed as:

  1. Add rpn to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:rpn, "~> 0.1.0"}]
end
```
  1. Ensure rpn is started before your application:
```elixir
def application do
  [applications: [:rpn]]
end
```