public While(Expr condition, Stmt body) { Condition = condition; Body = body; }
public If(Expr condition, Stmt thenBranch, Stmt elseBranch) { Condition = condition; ThenBranch = thenBranch; ElseBranch = elseBranch; }