Skip to content

1 Jan 2021, v3.0.0-alpha.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@MuhammadSawalhy MuhammadSawalhy released this 01 Jan 19:23
· 78 commits to master since this release
363aa8c

Breaking

  • Node of type "function", when its args is [{ type: "block", name: "()", ... }], function's args is assigned to parenthesis args. In other words, in this case it will be Array not { type: "block", ... }.
  • Removing node type delimeter:
    • f(1,3,4) when parsed as function, it will have args with length 3.
    • (1,3,4) will be parsed with type = "tuple".

Added

  • Built-in function sqrt
  • Node of type "tuple": (1, 2, x, ...)