elixir-in-action/rect.ex

6 lines
65 B
Elixir
Raw Normal View History

2020-06-20 13:57:33 -05:00
defmodule Rectangle do
def area({a, b}) do
a * b
end
end