elixir-in-action/rect.ex
2020-06-20 13:57:33 -05:00

5 lines
65 B
Elixir

defmodule Rectangle do
def area({a, b}) do
a * b
end
end