It would be great to have a pipe operator like the one in elixir: ``` let add = fun(a, b) { a + b } 5 >> add(10) # => 15 >> add(15) # => 30 ``` The expression on the left should be the first argument to the function call on the right
It would be great to have a pipe operator like the one in elixir:
The expression on the left should be the first argument to the function call on the right