On 2011-02-14, at 5:07 PM, Marc Feeley wrote:
By "lexicographical" you mean when comparing strings? In that case it is out of my hands... it will depend on the definition of x>y when x and y are strings.
Indeed, Tachyon does not compare strings properly:
Tachyon initialization complete
Entering read-eval-print loop. Type commands below and press enter to execute them. For a listing of special commands, type /help To exit, type /exit
t> print("bbb" > "baaaaaaaa"); false
% d8 V8 version 3.1.1 [console: dumb] d8> print("bbb" > "baaaaaaaa"); true
Marc