who knows

This commit is contained in:
2024-11-26 22:42:39 -05:00
parent 87f755b763
commit 31c197e991
10 changed files with 17 additions and 3 deletions

View File

@@ -33,7 +33,7 @@ impl Debug for Statement {
match self {
Statement::Let(n, e) => {
f.write_str("let ")?;
n.fmt(f);
n.fmt(f)?;
f.write_str(" = ")?;
e.fmt(f)?;
f.write_char(';')?;