From: Devin Mullins Date: 2006-09-06T12:26:19+09:00 Subject: Re: One line infinite for loop in Ruby? >> I have been wondering, is there a no-op in Ruby? Then you could do >> while 1: pass > nil while true while true; end ...wait. Why are we doing this? And why are we disallowed from using loop{}? Okay, here's another: alias repeat loop; repeat{} Or: (1..1.0/0)..each{} How about: callcc{|$cc|};$cc[] Shall I continue, Anil? Devin