Created
August 21, 2013 12:16
-
-
Save plonk/6293740 to your computer and use it in GitHub Desktop.
AかBかCならば
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 Object | |
| def is_either?(*ary) | |
| ary.include? self | |
| end | |
| end | |
| value = :a | |
| if value.is_either? :a, :b, :c | |
| puts true | |
| else | |
| puts false | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment