From: "François Montel" Date: 2007-04-05T04:53:16+09:00 Subject: Re: Some General Questions about Ruby Vinh Chuc wrote: > are Ruby programs much slower/nearly as fast/ ... > as a for example a C-compiled program ( i guess it depends a lot on the > kind of software ) ?? Yes, Ruby is quite a bit slower than C. But depending on the program you're writing, this may not make much/any difference to the end user. If there are certain parts of the program that are creating a major performance hit, you can always write those bits in C and then call your C module from Ruby. -- Posted via http://www.ruby-forum.com/.