Skip to content

Instantly share code, notes, and snippets.

@codesword
Last active June 5, 2016 14:12
Show Gist options
  • Save codesword/093c72ab25a859625192721965d5565b to your computer and use it in GitHub Desktop.
Save codesword/093c72ab25a859625192721965d5565b to your computer and use it in GitHub Desktop.
class Student
def law_fees
21000
end
def physical_science_fees
22000
end
def medicine_fees
23000
end
def engineering_fees
24c000
end
def fees(school)
if school == "engineering"
engineering_fees
elsif school == "physical_science"
physical_science_fees
elsif school == "law"
law_fees
elseif school == "medicine"
medicine_fees
else
20000
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment