Skip to content

Instantly share code, notes, and snippets.

@perspectivezoom
Created June 13, 2012 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save perspectivezoom/2925295 to your computer and use it in GitHub Desktop.
Save perspectivezoom/2925295 to your computer and use it in GitHub Desktop.
def greeter(first, last)
name = first + last
if %w{ ShereefBishay TonyPhillips AnneSpalding }.include? name
"I love Dev Bootcamp!"
elsif %w{ JesseFarmer RobertFletcher }.include? name
"Will you look at the C source code for this with me?"
else
"Well hello there."
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment