PHP HD schrieb: > Hello all, > > Is there anybody else confused about module methods? Why would you > create one when you could create a class method that is essentially the > same thing but with more functionality? > Because you can "mixin" these methods in classes. module Foo def test puts "Hello!" end end class Bar include Foo end f = Bar.new f.test #=> Hello!