Skip to content

Instantly share code, notes, and snippets.

@ahmetabdi
Created July 17, 2018 13:56
Show Gist options
  • Save ahmetabdi/0222d5df52cf66f8dbcf4012f8fbdbf6 to your computer and use it in GitHub Desktop.
Save ahmetabdi/0222d5df52cf66f8dbcf4012f8fbdbf6 to your computer and use it in GitHub Desktop.
defmodule Talker do
 def say_hello(nil), do: "Please give me a name"
 def say_hello(name) do
   "Hi, #{name}."
 end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment