/// Semantic analyzer pub mod analyzer; /// AST pub mod ast; /// Compiler pub mod compiler; /// Lexer module pub mod lexer; /// Language opcodes pub mod opcode; /// Parser module pub mod parser; /// Language types pub mod types;