[feat] exp

This commit is contained in:
rootacite
2025-10-23 04:35:36 +08:00
parent ffb4c13c72
commit cf524608a1
1562 changed files with 2906 additions and 5 deletions

BIN
01/project-hbj/target Executable file

Binary file not shown.

16
01/project-hbj/target.cpp Normal file
View File

@@ -0,0 +1,16 @@
#include <iostream>
#include <string>
#include <unistd.h>
#include <sys/types.h>
int main()
{
pid_t pid = getpid();
std::cout << "Pid: " << pid << std::endl;
while(true)
{
sleep(0);
}
}