feat: Add support for loop statements.

This commit is contained in:
Jooris Hadeler
2026-01-15 21:42:15 +01:00
parent 6f19d38bf0
commit b0f3937227
3 changed files with 14 additions and 1 deletions

View File

@@ -73,6 +73,10 @@ pub enum Statement {
elze: Option<Box<Statement>>,
},
Loop {
body: Box<Statement>,
},
Compound {
body: Vec<Statement>,
},