diff options
Diffstat (limited to 'Meta/Lagom/TestApp.cpp')
-rw-r--r-- | Meta/Lagom/TestApp.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/Meta/Lagom/TestApp.cpp b/Meta/Lagom/TestApp.cpp deleted file mode 100644 index 8b90f2cac2..0000000000 --- a/Meta/Lagom/TestApp.cpp +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org> - * - * SPDX-License-Identifier: BSD-2-Clause - */ - -#include <LibCore/EventLoop.h> -#include <LibCore/Timer.h> -#include <stdio.h> - -int main(int, char**) -{ - Core::EventLoop event_loop; - - auto timer = Core::Timer::construct(100, [&] { - dbgln("Timer fired, good-bye! :^)"); - event_loop.quit(0); - }); - - return event_loop.exec(); -} |