Skip to content

Instantly share code, notes, and snippets.

@lepoetemaudit
Created November 30, 2016 16:33
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 lepoetemaudit/a55058cd352f4d1336f28b512cdde380 to your computer and use it in GitHub Desktop.
Save lepoetemaudit/a55058cd352f4d1336f28b512cdde380 to your computer and use it in GitHub Desktop.
Pipe forward in mlfe
module pipe_forward_test
(|>) x y = y x
add x y = x + y
add_one x = add 1 x
res = 2 |> add_one
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment