Last active
June 5, 2016 14:12
-
-
Save codesword/093c72ab25a859625192721965d5565b 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
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