Skip to content

Instantly share code, notes, and snippets.

@dinocosta
Last active February 6, 2019 15:14
Show Gist options
  • Select an option

  • Save dinocosta/0d082bafc2da17beeef175e8058d6de1 to your computer and use it in GitHub Desktop.

Select an option

Save dinocosta/0d082bafc2da17beeef175e8058d6de1 to your computer and use it in GitHub Desktop.
defmodule Increaser do
def increase(number) do
number + 1
end
end
Task.async_stream(1..10, &Increaser.increase/1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment