Last active
October 6, 2017 22:42
-
-
Save audy/93de9d76ddec861a0b9aa5bf14df83b3 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 Boat | |
| class << self | |
| def <=> boat | |
| boat | |
| end | |
| def [] boat | |
| boat | |
| end | |
| def ^ boat | |
| boat | |
| end | |
| def << boat | |
| boat | |
| end | |
| end | |
| end | |
| p Boat <=> Boat[Boat] ^ Boat << Boat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment