Skip to content

Instantly share code, notes, and snippets.

@ahmetabdi
Created July 17, 2018 13:54
Show Gist options
  • Save ahmetabdi/c773a7849127c4e76643bb14b37bb78d to your computer and use it in GitHub Desktop.
Save ahmetabdi/c773a7849127c4e76643bb14b37bb78d to your computer and use it in GitHub Desktop.
defmodule Talker do
  def say_hello("Bob"), do: "Hello, Bob!"
  def say_hello("Jane"), do: "Hi there, Jane!"
  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