Implementing A Stack In Elixir Pid Vs Genserver
I wanted to see how I can essentially implement a GenServer
in Elixir without actually using a GenSever
. The following gist has two implementations, a basic GenServer
implementation, and an implementation using send
and receive
.