my @things = qw (apple Xenon banana Xircom cheese XWindows);
foreach (@things) {s/^X/\00/i};
@oddity = sort @things;foreach (@oddity) {s/\00/X/i};
print "@oddity";