Guest User

Untitled

a guest
Oct 20th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. def greeter(first, last)
  2. name = first + last
  3. if %w{ ShereefBishay TonyPhillips AnneSpalding }.include? name
  4. "I love Dev Bootcamp!"
  5. elsif %w{ JesseFarmer RobertFletcher }.include? name
  6. "Will you look at the C source code for this with me?"
  7. else
  8. "Well hello there."
  9. end
  10. end
Add Comment
Please, Sign In to add comment