mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:38:12 +00:00
10 lines
136 B
C++
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;
|
|
}
|
|
|