mumu 0.10.0

Lava Mumu is a language for those in the now and that know
Documentation
1
2
3
4
5
6
7
8
9
10
11
// src/parser/mod.rs

pub mod ast;
pub mod lexer;
pub mod core;       // <--- NEW location for parser code!
pub mod interpreter;
pub mod tokens;
pub mod types;
pub mod statements;
pub mod parse_utils;
pub mod parser_utils;