mirror of
https://github.com/Noratrieb/dilaria.git
synced 2026-01-14 17:35:03 +01:00
12 lines
199 B
Rust
12 lines
199 B
Rust
mod ast;
|
|
mod errors;
|
|
|
|
use crate::ast::Program;
|
|
|
|
pub fn process_ast(program: &str, ast: &Program) {
|
|
dbg(ast);
|
|
}
|
|
|
|
pub fn dbg(x: impl dbg_pls::DebugPls) {
|
|
eprintln!("{}", dbg_pls::pretty(&x))
|
|
}
|