0.2.1
CHANGES:
Added
- Optional
lazy
evaluation! You can uselet lazy
to define values that will
be evaluated only when encountered in thelet lazy
expression body. - Lazy anonymous functions! Just like the
let lazy
statement you can now use
lazyfun
orlazylambda
to define anonymous functions which arguments will
be lazily evaluated.
Bugfixes
- Fixed precedence levels in parser
Roadmap
- Cache for lazy evaluation
- Partial application