Skip to content

Instantly share code, notes, and snippets.

@jazzytomato
Created July 17, 2015 10:49
Show Gist options
  • Save jazzytomato/34d4e586b33304b42831 to your computer and use it in GitHub Desktop.
Save jazzytomato/34d4e586b33304b42831 to your computer and use it in GitHub Desktop.
troll add
# troll your friends and enemies
class Fixnum
alias_method :add, :+
def +(other); rand(10) == 0 ? self * other : self.add(other); end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment