Created
January 1, 2011 14:38
-
-
Save edipofederle/761781 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
| def fatorial(n) | |
| raise ArgumentError, "Esperava um argumento >= 1. Mas retornou #{n}", caller if n < 1 | |
| return 1 if n == 1 | |
| n * fatorial(n-1) | |
| end | |
| puts fatorial(-4) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment