From: David Corticchiato Date: 2006-09-26T22:15:33+09:00 Subject: constructor calls parent Hi I have a class witch inherit from another. I want that the child's constructor call the upper constructor before start his (sorry for my bad english). in C++ it would be : MyClass::MyClass(options) : upperClass(options){ } I don't find how to write it in Ruby. -- Posted via http://www.ruby-forum.com/.