exercism/elixir/bob/bob.exs
anthony.cicchetti 5f9cd49d7a initial commit
2017-04-25 15:51:48 -04:00

14 lines
499 B
Elixir

defmodule Bob do
def hey(input) do
cond do
String.last(input) == "?" -> "Sure."
String.length(String.trim(input)) == 0 -> "Fine. Be that way!"
String.upcase(input) == input -> if(String.downcase(input) == input) do
"Whatever."
else
"Whoa, chill out!"
end
true -> "Whatever."
end
end
end