Created
May 18, 2022 09:42
-
-
Save denisdefreyne/a13650de94d022576a7b0f0137aefeec 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 Score | |
# … | |
def <=>(other) | |
return nil unless other.class == self.class | |
@value <=> other.value | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment