Test1/main.cpp

12 lines
112 B
C++
Raw Normal View History

2024-11-29 15:59:40 +00:00
#include <iostream>
2024-11-29 16:03:08 +00:00
void test() {
}
2024-11-29 15:59:40 +00:00
int main() {
std::cout << "hello world" << "\n";
2024-11-29 16:03:08 +00:00
test();
2024-11-29 15:59:40 +00:00
return 0;
}