From: chad fowler <chadfowler / yahoo.com> > I don't think he's maintaining that site. I sent him > a version several months ago. I also summitted a version last October with no response. -Wayne BTW here is my entry: somewhat whimsical #!/usr/bin/ruby class Fixnum def to_s "%d bottle#{self ==1 ? '' : 's'} of beer" % self end end c = 100 while c.nonzero? print "#{c} on the wall,\n" print "#{c},\n" print "Take one down, pass it around,\n" c -= 1 print "#{c} on the wall\n\n" end print "*burp*\n"