Test1/main.cpp

12 lines
112 B
C++

#include <iostream>
void test() {
}
int main() {
std::cout << "hello world" << "\n";
test();
return 0;
}