From: Shashank Date Date: 2004-02-09T15:41:57+09:00 Subject: Re: running a class from the base class "tim" wrote in message > I currently have a number of derived classes that all > have something like: > > begin > xx = SpecificArchitecture.new() > xx.main(ARGV) > end > > at the end. Which i would like to remove. ^^^^^^^^ If you always want to do this _at the end_ of your program, then take a look at the Kernel#at_exit {} method. -- shanko