I've just subscribed to the mailing lists, and I'm very excited to be a part of this. I started reading the documentation and I've been reading through the tests. It's making a lot of sense, which is a good thing.
My question is, has there been a decision for negative zero? Zero shouldn't be negative (IMHO) or if it is allowed to be zero, then the floating point zero and the integer zero should probably behave the same way. I'll give an example: set N1,0 print N1 print "\n" neg N1, N1 print N1 print "\n" set I1,0 print I1 print "\n" neg I1,I1 print I1 print "\n" outputs 0.000000 -0.000000 0 0 Michael