Skip to content

Instantly share code, notes, and snippets.

@mrb
Forked from quirkey/snippet.txt
Created September 24, 2009 20:15
Show Gist options
  • Save mrb/193027 to your computer and use it in GitHub Desktop.
Save mrb/193027 to your computer and use it in GitHub Desktop.
class B
def self.method_missing(m, *args)
puts "B#{m.to_s.upcase}"
end
end
class B
def self.oosh
puts 1.to_f/0
end
end
>> B.oosh
Infinity
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment