Real numbers are now implemented, including comparisons and the four basic operations. There are still a few memory management issues to iron out. The decimal arithmetic library makes use of dynamic memory allocation (standard malloc/free), and that doesn't play nicely with our Object memory model. Dynamic allocation needs to be replaced with static allocation for speed and to eliminate any possibility of memory leaks or heap fragmentation during long execution periods.

Error traps were also implemented (IFERR), and the first chapter of the documentation is published. Code is still undergoing a thorough cleanup and the first aplha version will be released in due time.