Skip to content

Instantly share code, notes, and snippets.

@Gustav-Simonsson
Created October 14, 2011 19:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gustav-Simonsson/1288113 to your computer and use it in GitHub Desktop.
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