namespace Golf { //namespace System //{ // struct Int32 // { // static public bool operator < (Int32 x, int y) { return true; } // static public bool operator > (Int32 x, int y) { return false; } // static public Int32 operator ++ (Int32 z) { return z; } // } //} class Program { static void Main(string[] args) { for (var x = default(System.Int32); x < 3; ++x) global::System.Console.WriteLine("итерация"); } } }