Skip to content

Instantly share code, notes, and snippets.

@daz
Created September 15, 2012 09:28
Show Gist options
  • Save daz/3727108 to your computer and use it in GitHub Desktop.
Save daz/3727108 to your computer and use it in GitHub Desktop.
class Employee
PAY_RATES = [1, 6, 7.80]
def pay_rate
case age
when 0..15
PAY_RATE[0]
when 15..16
PAY_RATE[1]
else
PAY_RATE[3]
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment