feat: Add support for loop statements.
This commit is contained in:
@@ -73,6 +73,10 @@ pub enum Statement {
|
||||
elze: Option<Box<Statement>>,
|
||||
},
|
||||
|
||||
Loop {
|
||||
body: Box<Statement>,
|
||||
},
|
||||
|
||||
Compound {
|
||||
body: Vec<Statement>,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user