Skip to content

Instantly share code, notes, and snippets.

@jballanc
Created November 9, 2012 14:06
Show Gist options
  • Save jballanc/4045840 to your computer and use it in GitHub Desktop.
Save jballanc/4045840 to your computer and use it in GitHub Desktop.
Crazy Spaceship
class Greater
def <=>(other)
1
end
end
g = Greater.new
t = Time.now
s = "test"
i = 101
# Can you guess?
p t < g #=> ?
p s < g #=> ?
p i < g #=> ?
def g.to_str; end
# ...and now?
p t < g #=> ?
p s < g #=> ?
p i < g #=> ?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment