Skip to content

Instantly share code, notes, and snippets.

@denisdefreyne
Created May 18, 2022 09:42
Show Gist options
  • Save denisdefreyne/a13650de94d022576a7b0f0137aefeec to your computer and use it in GitHub Desktop.
Save denisdefreyne/a13650de94d022576a7b0f0137aefeec to your computer and use it in GitHub Desktop.
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