yadro-task/src/main.cpp

8 lines
143 B
C++
Raw Normal View History

2024-10-21 08:03:12 +00:00
#include <iostream>
#include <ostream>
2024-10-19 02:36:22 +00:00
2024-10-21 08:03:12 +00:00
int main(int /*argc*/, char * /*argv*/[]) {
std::cout << "Hello, World!" << std::endl;
return 0;
2024-10-19 02:36:22 +00:00
}