I am confused about what PolyML.Compiler.printInAlphabeticalOrder is intended to control. If I enter the following:
signature S = sig val x : int val z : int val y : int end; structure S = struct val x = 1 val z = 3 val y = 2 end;
the signature and the structure are both printed with the variables in reverse alphabetical order. (I was rather hoping for an option to have them in the source code order.)
Regards,
Rob.