defmodule Tabuada do
def tabuada(n) do
tabuada(n, 10, [])
end
defp tabuada(_, 0, list), do: list
defp tabuada(n, m, list) do
tabuada(n, m-1, [(n*m)|list])
end
end
defmodule Tabuada do
def tabuada(n) do
tabuada(n, 10, [])
end
defp tabuada(_, 0, list), do: list
defp tabuada(n, m, list) do
tabuada(n, m-1, [(n*m)|list])
end
end
Olá, Matheus!
Muito bom