Пример #1
0
 public While(Expr condition, Stmt body)
 {
     this.Condition = condition;
     this.Body      = body;
 }
Пример #2
0
 public If(Expr condtion, Stmt then_branch, Stmt else_branch)
 {
     this.Condition  = condtion;
     this.ThenBranch = then_branch;
     this.ElseBranch = else_branch;
 }