Skip to content

Releases: regeda/expr

New Lexer

24 Jun 16:08
db46f6c
Compare
Choose a tag to compare
  1. The lexer generates a syntax tree during the input parsing.
  2. Basic math operators +-*/ were introduced. It enables you to use math in your expressions:
1 + 2
2 * (1 + -199)

New memory model

10 May 08:14
1cda551
Compare
Choose a tag to compare
  • Remove memory hard limits
  • Array of arrays support
  • The equals delegator supports arrays

First version

09 Mar 09:18
Compare
Choose a tag to compare

The first release contains the basic toolchain:

  • compilation the expression language into bytecode
  • bytecode executing by the virtual machine