[ruby-talk:14594] Re: Module method definition question
Assuming you meant 'module A', the first defines an instance method, the second a module method. The instance method cannot be called until the module is mixed in to a class using 'include'. The module method can be called by giving the module name as a receiver:
instance method 只有在被 mixed 的時候才有用