Skip to content

Instantly share code, notes, and snippets.

@toopay
Created January 2, 2015 07:01
Show Gist options
  • Save toopay/b925e97a24b8099b979b to your computer and use it in GitHub Desktop.
Save toopay/b925e97a24b8099b979b to your computer and use it in GitHub Desktop.
Pint in concurrent
-module(brewfactory).
-export([pint/0]).
pint() ->
receive
{Pid, heinekken} ->
Pid ! "Dankjewel!",
pint();
{Pid, guiness} ->
Pid ! "Thank you!",
pint();
{Pid, peroni} ->
Pid ! "Grazie!",
pint();
{Pid, _} ->
Pid ! "You're in wrong place!",
pint()
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment