예제 #1
0
 static void TotemFor()
 {
     for (TotemValue i = new TotemNumber(0L); (bool)(i < new TotemNumber(10L)); i++)
     {
         Console.WriteLine(i);
     }
 }
예제 #2
0
 static void ForTotemLoops()
 {
     for (TotemValue i = new TotemNumber(0); (bool)(i < new TotemNumber(10)); i++)
     {
         Console.WriteLine(i);
     }
 }