From: Xeno Campanoli Date: 2005-10-20T02:50:03+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] # Sorry about this omission the first time: Version was ruby 1.8.1 on CentOS # Linux. b.sort.each do |bool| p bool end