예제 #1
0
파일: ASTForIn.cs 프로젝트: goric/cflat
 public override string Print(int depth)
 {
     return("for (" + TempVariable.Print(depth) + " in [" + Lower.Print(depth) + " .. " + Upper.Print(depth) + "])"
            + NewLine(depth + 1) + Body.Print(depth + 1));
 }