From: Martin DeMello Date: 2010-07-14T22:09:36+09:00 Subject: Re: Modules in Ruby On Wed, Jul 14, 2010 at 6:33 PM, Abder-Rahman Ali wrote: > I have this script with slight change from "The Little Book Of Ruby": > > http://pastie.org/private/6wgnmrtsodlmbh3ib1vg > > If I type the following: puts MyModule.greet > > I get the required result. > > But, there is an instance method inside the module "greet". How can I > call that method at the time modules CANNOT be instantiated? Include it in a class class MyClass include MyModule end a = MyClass.new a.greet martin