gateway_android/unit_test/test/hello/main.cc

10 lines
152 B
C++
Raw Permalink Normal View History

2024-10-31 08:25:18 +00:00
# include <iostream>
int main(int argc, char const *argv[])
{
for(int i = 0; i < 5; ++i)
std::cout << "Hello World" << std::endl;
return 0;
}