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;\")"
---
(
    Root@0..8
      ExprStmt@0..7
        BinaryExpr@0..7
          PrefixExpr@0..3
            Minus@0..1 "-"
            IntLiteral@1..3
              Integer@1..2 "1"
              Whitespace@2..3 " "
          Star@3..4 "*"
          Whitespace@4..5 " "
          PrefixExpr@5..7
            Minus@5..6 "-"
            IntLiteral@6..7
              Integer@6..7 "2"
      Semicolon@7..8 ";"
    ,
    [],
)