Version 0.0.7
Changes:
- Added interpreter functionality
- Added ability to compile to a Linux binary with
g++
Extra stuff:
- Polymorphic objects, makes it easier to develop more types of objects
Specifics:
- Currently only a
Number
object - A
Number
's value is either a ±double (IEEE 754),±Infinity
, orNaN
- Division by
0
causes an error, exceptNaN / 0
doesn't cause an error -0 == 0
- More documentation will be made later...