//! A Namumark parser<br />
//! To start, make [Compiler] with [Compiler::from]<br />
//! Use [Compiler::parse] to parse.<br />
//! # Custom Macro
//! You can add Custon Macro using [Compiler::add_custom_macros]
//! # Example
//! ```rust
//!use munarkma::structs::Compiler;
//!fn main() {
//! let compiler = Compiler::from(\\\"Hello, Namumark!\\\".to_string());
//! println!(\\\"{:#?}\\\", compiler.array);
//!}
//!```