2006-01-27 モジュールとnew でも、もちろん無理やりモジュールメソッドとしてnewを作ることはできますけれどね。 class RubycoClass def hello print "Hello!\n" end end module RubycoModule def self.new return RubycoClass.new end end a = RubycoModule.new a.hello # => Hello!