From: khaines@... Date: 2007-05-25T09:11:06+09:00 Subject: Re: Ruby programming challenges and riddles? On Fri, 25 May 2007, Hakusa@gmail.com wrote: > But just to get the ball rolling: > Print 1...100 on the screen in 4 or less lines of code. puts "1...100" hahaha Actually: puts (1..100).to_a Kirk Haines