module NyttigDill
  def foo; "foo"; end
end
module NyttigDall
  def foo; "bar"; end
end

class DillDall
  include NyttigDill   # Multippel arv av
  include NyttigDall   # funksjonalitet.
end
puts DillDall.new.foo  #=> "bar"

class DillDall
  extend NyttigDill    # Utvider klasseobjektet.
end
puts DillDall.foo      #=> "foo"
