This commit is contained in:
2026-04-11 15:21:03 -04:00
parent 229b026573
commit 2582e8c87e
15 changed files with 301 additions and 199 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ fn main() {
let mut output = CompilerOutput::new();
let nodes = Nodes::parse_root(&path, &mut output);
if let Some((nodes, root)) = nodes {
println!("{}", root.dsp(&nodes));
print!("{}", root.dsp(&nodes));
}
output.write(&mut std::io::stdout());
}