pascal 0.1.4

A modern Pascal compiler with build/intepreter/package manager built with Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Utility modules for common patterns (DRY principle)

pub mod ast_helpers;
pub mod block;
pub mod cow_ident;
pub mod string_utils;

pub use ast_helpers::*;
pub use block::*;
pub use cow_ident::*;
pub use string_utils::*;