Created
March 29, 2016 17:19
-
-
Save stupeters187/1a26001e3238557fadf433ef3d2a37ce to your computer and use it in GitHub Desktop.
This file contains 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
# must be baller and either furnished or rent cheaper than 2100 | |
def rent?(baller, furnished, rent) | |
if (baller && furnished) || rent < 2100 | |
puts true | |
else | |
puts false | |
end | |
end | |
### | |
# Add your "test" ("driver") code below in order to "test drive" (run) your method above... | |
# The test code will call the method with different permutations of options and output the result each time. | |
# This way, you will be able to run the renter.rb file from the CLI and look at the output of your "tests" to validate if the method works. | |
# Without the test code, it will be hard for you to know if this method is working as it should or not. | |
### | |
rent?(true, true, 1000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment