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