Created
April 23, 2012 19:40
-
-
Save icodejs/2473320 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Determine US generation name based on birth year | |
# Case expression tests ranges with === | |
generation = case birthyear | |
when 1946..1963: "Baby Boomer" | |
when 1964..1976: "Generation X" | |
when 1978..2000: "Generation Y" | |
else nil | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment