Skip to content

Instantly share code, notes, and snippets.

@ahmetabdi
Created July 17, 2018 13:57
Show Gist options
  • Save ahmetabdi/244a7605a4f828f59862b3f26d38fd5c to your computer and use it in GitHub Desktop.
Save ahmetabdi/244a7605a4f828f59862b3f26d38fd5c to your computer and use it in GitHub Desktop.
class Talker
 def say_hello(name)
   return “Please give me a name” if name.nil?
   “Hi, #{name}.”
 end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment