When a class or module is defined, the code inside is evaluated and the
return value of the last expression is returned. This is because you could
define class level attributes or constants or execute arbitrary code
relevant to the class or to prepare it.
When a method is defined as in your second example, the code inside is only
executed when the method is run. You could call the D() method to return 8
as expected.
Is that helpful?
···
On Fri, Mar 1, 2013 at 11:38 AM, Matt Mongeau <halogenandtoast@gmail.com>wrote:
Because that's how it is implemented.
2013/3/1 Kumar R. <lists@ruby-forum.com>
The below class description returns its last evaluated expression :
>> class A
>> 1+7
>> 2+4
>> end
=> 6
To return `6` which method the expression generally called?
On Fri, Mar 1, 2013 at 11:51 AM, Ryan Cook <cookrn@gmail.com> wrote:
When a class or module is defined, the code inside is evaluated and the
return value of the last expression is returned. This is because you could
define class level attributes or constants or execute arbitrary code
relevant to the class or to prepare it.
When a method is defined as in your second example, the code inside is
only executed when the method is run. You could call the D() method to
return 8 as expected.
Is that helpful?
On Fri, Mar 1, 2013 at 11:38 AM, Matt Mongeau <halogenandtoast@gmail.com>wrote:
Because that's how it is implemented.
2013/3/1 Kumar R. <lists@ruby-forum.com>
The below class description returns its last evaluated expression :
>> class A
>> 1+7
>> 2+4
>> end
=> 6
To return `6` which method the expression generally called?