blob: 8b90f2cac2cca96cf768845d9b5ed0f58e6cdedb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* 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();
}
|