vicuna-compiler 0.1.1

A compiler for the Vicuna programming language
Documentation
1
2
3
4
5
6
7
8
9
mod ast;
mod compiler;
mod js_backend;
mod parser;
mod symbol_table;
mod type_checker;

pub use compiler::{check, compile, CompilerOutput, Errors};
pub use parser::parse;