Created
November 12, 2014 03:56
-
-
Save base10/7cbe1311470d814781cb 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
case day_of_week | |
when 'Monday', 'Wednesday' then hours = hours_m_w | |
when 'Tuesday', 'Thursday' then hours = hours_t_th | |
when 'Friday' then hours = hours_f | |
else hours = "Weekend!" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment