What's New in v1.1.0
Float Data Type
- Full Support: Floating-point numbers are now first-class citizens.
- Float Literals: Supports clean decimal notations like
3.14,0.5, and-5.5. - Mixed-Type Math: Support mix integers and floats expressions (e.g.,
5 + 2.5=7.5). - Comparisons: Compare values across numeric types directly (e.g.,
5.5 > 4).
Built-in Functions
num(): Now parses decimal strings into floats.str(): Formats floats into strings.
Full Changelog: v1.0.0...v1.1.0