How to translate this Erlang code to LFE?

Since then I made an AOC problem with LFE.

I have read the books from @oubiwann and followed the start of this course.

Here is the secret I have learned :slight_smile:

# Elixir
input |> ... |> ... |>

%% Erlang
S0=...(Input).
S1=...(S0).
S3=...(S1).

; LFE
(...(...(...input)))
3 Likes