From: "Hakusa@..." Date: 2007-05-22T11:15:03+09:00 Subject: Re: Oddities of Ruby to a noob > > because you don't actually increment it anywhere. Perhaps you want something like: > > x=5 > y=0 > x.times do > (y += 1).times do > puts "x = #{x} y = #{y}" > end > end > > cheers, > mick You'd think I'd have gotten that. Oh well. There's one problem fixed. Thanks.