aboutsummaryrefslogtreecommitdiffstats
path: root/tests/GeneratorTestApp/Program.cs
blob: cb3507e9f9602a372e93c7eff98ec01eff82bee7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/***************************************************************************************************
 Copyright (C) 2025 The Qt Company Ltd.
 SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
***************************************************************************************************/

namespace GeneratorTestApp
{
    internal class Program
    {
        static void Main(string[] args)
        {
            while (!Console.KeyAvailable || Console.ReadKey(true).Key != ConsoleKey.Escape)
                if (!Console.KeyAvailable)
                    Thread.Sleep(100);
        }
    }
}