elixir-in-action/test_num.ex

12 lines
148 B
Elixir
Raw Normal View History

2020-06-20 13:57:33 -05:00
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