Notes:
Äquivalent zu
def a.count
self.size
end
ist
class << a
def count
self.size
end
end