Skip to content

Instantly share code, notes, and snippets.

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