Example #1
0
 public override string Interpret()
 {
     return(_left?.Interpret() + " 再 " + _right?.Interpret());
 }
Example #2
0
 public string Output()
 {
     return(_node?.Interpret());
 }
Example #3
0
 public override string Interpret()
 {
     return(_direction.Interpret() + _action.Interpret() + _distance.Interpret());
 }