What are the differences between:
module Mod   
   def here
     puts 'child'
   end    
end
class A
  prepend Mod
  def here
    puts 'parent'
  end
end
and
class A
   def here
     puts 'parent'
   end
end
class B < A
  def here
    puts 'child'
  end
end
Or another way to put it: is derivating a class the same as prepending a module of the child's code?
 
     
     
    