Skip to content

Instantly share code, notes, and snippets.

@defp
Created May 2, 2014 12:46
Show Gist options
  • Save defp/581804685e3658b1464b to your computer and use it in GitHub Desktop.
Save defp/581804685e3658b1464b to your computer and use it in GitHub Desktop.
elixir pipe test
defmodule Hello do
def pipe(a, b) do
IO.puts a
IO.puts b
end
end
"hello" |> Hello.pipe("world")
@defp
Copy link
Author

defp commented May 2, 2014

hello
world

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment