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

11 lines
148 B
Elixir

defmodule TestNum do
def test(x) when x < 0 do
:negative
end
def test(0), do: :zero
def test(x) when x > 0 do
:positive
end
end