mirror of
https://github.com/0O0o0oOoO00/Alas.git
synced 2026-05-14 14:29:26 +08:00
14 lines
231 B
C++
14 lines
231 B
C++
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <pthread.h>
|
|
#include <iostream>
|
|
|
|
int main(int argc, char const *argv[]) {
|
|
|
|
std::cout << "Start..." << std::endl;
|
|
|
|
sleep(100);
|
|
return 0;
|
|
} |