Created
August 8, 2010 00:17
-
-
Save emiltin/513382 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 Integer | |
| def show_divisors *a | |
| info = a.map { |n| "is #{'not ' unless self%n==0}dividable by #{n}" }.join ' and ' | |
| puts "The value #{self} #{info}." | |
| end | |
| end | |
| 1.upto(10) { |x| x.show_divisors 3,5 } | |
| 1.upto(10) { |x| x.show_divisors 2,4,7 } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment