Skip to content

Instantly share code, notes, and snippets.

@xinuc
Created May 24, 2013 04:48
Show Gist options
  • Save xinuc/5641326 to your computer and use it in GitHub Desktop.
Save xinuc/5641326 to your computer and use it in GitHub Desktop.
Potato
class Fixnum
def +(x)
"potato"
end
def *(x)
"potato"
end
def /(x)
"potato"
end
def -(x)
"potato"
end
end
puts 40 + 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment