cobble-lang 0.6.1

A modern, Python-like language for creating Minecraft Data Packs
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Parser module structure

// Tokenizer module - handles lexical analysis
pub mod tokenizer;

// Combinators module - handles parsing token streams into AST
mod combinators;

// Re-export public API
pub use combinators::{parse, token_parser};
pub use tokenizer::{tokenize, Token};