{ print 0xabcdef; # this outputs "11259375" print 0xABCDEF; # so does this print 0XABCDEF; # but this is a syntax error } Is there some kind of thought behind only allowing lowercase x in a hexadecimal literal? /Bo Lindbergh