This commit is contained in:
2026-06-11 13:18:12 +03:00
parent f29d07dd1a
commit faa2df92cc
7 changed files with 111 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#include <stdio.h>
#include "../libs/time.h"
int main() {
printf("Wait 5 seconds...\n");
wait(5);
return 0;
}