Files
clice/tests/data/hello_world/main.cpp
ykiko 836d9dc988 Add basic test client (#156)
Co-authored-by: star9029 <hengxings783@gmail.com>
2025-07-21 17:55:10 +08:00

7 lines
96 B
C++

#include <iostream>
int main() {
std::cout << "Hello World!" << std::endl;
return 0;
}