From: Xeno Campanoli Date: 2005-10-20T02:39:11+09:00 Subject: #!/usr/bin/ruby # # try003.rb # # Here is my bug. It turns out it's not as whacky as I though. It just # was failing because Ruby cannot sort booleans; presumably an omission: b = [false,true,false,true] b.sort.each do |bool| p bool end