Created
July 16, 2016 22:04
-
-
Save practicingruby/1ff3fdbc108e00c1c64548f8b5355b6a 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
def computation(number) | |
raise "Amount cannot be negative" if number < 0 | |
# do something here. | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment