zoisite 0.1.0

Zoisite is a programming language designed specifically for competitive programming.
Documentation
---
source: crates/compiler/src/grammar.rs
expression: "parse(\"1 + 2 * 3;\")"
---
(
    Root@0..10
      ExprStmt@0..9
        BinaryExpr@0..9
          IntLiteral@0..2
            Integer@0..1 "1"
            Whitespace@1..2 " "
          Plus@2..3 "+"
          Whitespace@3..4 " "
          BinaryExpr@4..9
            IntLiteral@4..6
              Integer@4..5 "2"
              Whitespace@5..6 " "
            Star@6..7 "*"
            Whitespace@7..8 " "
            IntLiteral@8..9
              Integer@8..9 "3"
      Semicolon@9..10 ";"
    ,
    [],
)