fork download
  1. using static System.Console;
  2.  
  3. namespace Golf
  4. {
  5. namespace System
  6. {
  7. struct Int32
  8. {
  9. static public bool operator < (Int32 x, int y) { return true; }
  10. static public bool operator > (Int32 x, int y) { return false; }
  11. static public Int32 operator ++ (Int32 z) { return z; }
  12. }
  13. }
  14.  
  15. class Program
  16. {
  17. static void Main(string[] args)
  18. {
  19. int i = 0;
  20.  
  21. for (var x = default(System.Int32); x < 3; ++x)
  22. {
  23. WriteLine("итерация");
  24. if (++i > 15) break;
  25. }
  26. }
  27. }
  28. }
Success #stdin #stdout 0s 29664KB
stdin
Standard input is empty
stdout
итерация
итерация
итерация
итерация
итерация
итерация
итерация
итерация
итерация
итерация
итерация
итерация
итерация
итерация
итерация
итерация