Created
June 13, 2012 17:06
-
-
Save perspectivezoom/2925295 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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