mux-lang 0.3.2

The Mux Programming Language Compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod ast;
pub mod codegen;
pub mod diagnostic;
mod embedded_std {
    include!(concat!(env!("OUT_DIR"), "/embedded_std.rs"));
}
pub mod lexer;
pub mod module_resolver;
pub mod parser;
pub mod semantics;
pub mod source;