1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:38:12 +00:00
serenity/Userland/sleep.cpp
2018-10-25 13:56:03 +02:00

10 lines
136 B
C++

#include <LibC/unistd.h>
#include <LibC/stdio.h>
int main(int c, char** v)
{
unsigned secs = 10;
sleep(secs);
return 0;
}