Skip to content

Instantly share code, notes, and snippets.

@d6y
Created November 16, 2016 00:04
Show Gist options
  • Save d6y/b56baeb38eeea2dc11d426b13a273cc9 to your computer and use it in GitHub Desktop.
Save d6y/b56baeb38eeea2dc11d426b13a273cc9 to your computer and use it in GitHub Desktop.
Haskell pipe
Prelude> let (|>) = flip (.)
Prelude> let hh = (*2) |> (+1) |> (+0.1)
Prelude> :t hh
hh :: Fractional c => c -> c
Prelude> hh 50
101.1
Prelude> :q
Leaving GHCi.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment