From: "Iñaki Baz Castillo" Date: 2008-05-20T00:11:10+09:00 Subject: Re: How to use a class_variable into a Module 2008/5/19, Heesob Park : > Here is a working code: > > module M > @@class_var = nil > def kk > > puts @@class_var > end > end > > class A > include M > @@class_var = "kaka1" > end > > a = A.new > a.kk It's great! Thanks a lot. -- Iñaki Baz Castillo