mirror of
https://github.com/ysoftdevs/cpp-examples.git
synced 2026-01-11 22:40:49 +01:00
12 lines
153 B
C
12 lines
153 B
C
#include <stdio.h>
|
|
#include <uv.h>
|
|
|
|
int main() {
|
|
uv_loop_t *loop = uv_loop_new();
|
|
|
|
printf("Now quitting.\n");
|
|
uv_run(loop);
|
|
|
|
return 0;
|
|
}
|