Elixir pipes and lambdas
1 |> (&+/2).(2) |> (&+/2).(3) |> IO.puts
:erlang.now |> :erlang.phash2 |> Integer.to_string(36) |> String.downcase |> IO.puts
0..9 |> Enum.map(&(:math.pow(2, &1))) |> Enum.reduce(&+/2) |> round |> IO.putsINFO
1 |> (&+/2).(2) |> (&+/2).(3) |> IO.puts
:erlang.now |> :erlang.phash2 |> Integer.to_string(36) |> String.downcase |> IO.puts
0..9 |> Enum.map(&(:math.pow(2, &1))) |> Enum.reduce(&+/2) |> round |> IO.puts