<add>增加test接口

This commit is contained in:
dong 2024-11-30 00:03:08 +08:00
parent 4104dd7573
commit 9270bd1762
1 changed files with 5 additions and 0 deletions

View File

@ -1,6 +1,11 @@
#include <iostream> #include <iostream>
void test() {
}
int main() { int main() {
std::cout << "hello world" << "\n"; std::cout << "hello world" << "\n";
test();
return 0; return 0;
} }