toolkit/func/common/files/hello.cpp

6 lines
74 B
C++
Raw Normal View History

2021-07-05 06:50:25 +00:00
#include <iostream>
int main() {
std::cout << "Hello!\n";
return 0;
}