Skip to content

Instantly share code, notes, and snippets.

@Gustav-Simonsson
Created October 14, 2011 19:46
Show Gist options
  • Select an option

  • Save Gustav-Simonsson/1288113 to your computer and use it in GitHub Desktop.

Select an option

Save Gustav-Simonsson/1288113 to your computer and use it in GitHub Desktop.
all_msg(Acc) ->
receive
X ->
all_msg([X|Acc])
after
1 ->
Acc
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment