Hash : 07aa17bb Author : Thomas de Grivel Date : 2022-02-03T12:11:29
Download
1 2 3 4 5 6 7
defmodule Stack do def to_string(stack), do: to_string(stack, []) def to_string([], acc), do: acc |> Enum.reverse() |> Enum.join("\n") def to_string([elt | rest], acc), do: to_string(rest, [inspect(elt) | acc]) end