bonus-edge-proxy/src/test.cc

14 lines
207 B
C++
Raw Normal View History

2025-10-13 13:55:15 +08:00
#include <iostream>
#include <thread>
2025-10-13 16:39:46 +08:00
#include <chrono>
#include <string>
#include <vector>
#include <stdexcept>
2025-10-14 16:06:43 +08:00
#include <iomanip>
2025-10-13 13:55:15 +08:00
2025-10-13 16:39:46 +08:00
int main(int argc, char* argv[]) {
2025-10-14 16:06:43 +08:00
printf("HELLO");
2025-10-13 16:39:46 +08:00
return 0;
2025-10-13 13:55:15 +08:00
}