Programming Languages

What is the purpose of the `pipe` operator in Elixir?

Medium
2
Added
The `pipe` operator (`|>`) is used to pass the result of one function as the first argument to the next function, making code more readable and concise.