cmake-action/test/hello_world.cpp
2023-01-06 15:23:09 +07:00

7 lines
92 B
C++

#include <iostream>
int main() {
std::cout << "Hello world!" << std::endl;
return 0;
}