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
12
13
14
15
16
// Unit tests module

mod lexer_tests;
mod parser_tests;
mod threading_tests;
mod codegen_tests;
mod optimization_tests;
mod simd_tests;
mod error_handling_tests;
mod stdlib_tests;
mod type_checker_tests;
mod interpreter_tests;
mod performance_tests;
mod oop_tests;
mod module_tests;
mod edge_case_tests;