Skip to content

Instantly share code, notes, and snippets.

@jballanc
Created November 20, 2012 21:35
Show Gist options
  • Save jballanc/4121336 to your computer and use it in GitHub Desktop.
Save jballanc/4121336 to your computer and use it in GitHub Desktop.
class FunkyStringComp
def to_str
raise "This is some crazy shit..."
end
def <=>(oth)
3.0
end
end
wut = FunkyStringComp.new
"test" <=> wut #=> Any guesses?
Time.new <=> wut #=> Seriously now?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment