vicuna-compiler 0.1.1

A compiler for the Vicuna programming language
Documentation
---
source: crates/vicuna-compiler/src/parser.rs
expression: "statement().parse(\"fn foo() { 20 }\")"
---
Ok:
  - Function:
      name:
        - foo
        - start: 2
          end: 6
      type_parameters: ~
      params: []
      return_type: ~
      body:
        - stmts: []
          end_expr:
            - Value:
                I32: 20
            - start: 11
              end: 13
        - start: 8
          end: 15
  - start: 0
    end: 15