Roger Pack wrote: > Question/project wish list: > > Are there any existing projects out there like these:? Seems like you could get some speedup by inlining Ruby methods: ex: [contrived] def a @a += 1 end def b a end 300_000.times { a } => .6s 300_000.times { @a += 1 } => .4s Anybody know of any projects out there akin to this at all? Thanks! -=R -- Posted via http://www.ruby-forum.com/.