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..12
      ExprStmt@0..11
        BinaryExpr@0..11
          ParenExpr@0..8
            OpenParen@0..1 "("
            BinaryExpr@1..6
              IntLiteral@1..3
                Integer@1..2 "1"
                Whitespace@2..3 " "
              Plus@3..4 "+"
              Whitespace@4..5 " "
              IntLiteral@5..6
                Integer@5..6 "2"
            CloseParen@6..7 ")"
            Whitespace@7..8 " "
          Star@8..9 "*"
          Whitespace@9..10 " "
          IntLiteral@10..11
            Integer@10..11 "3"
      Semicolon@11..12 ";"
    ,
    [],
)