Files
c-cpp-tests/single_file_tests/hello_world.cc
2020-02-10 00:45:05 +08:00

7 lines
111 B
C++

#include <iostream>
using namespace std;
int main() {
cout << "hello" << " " << "world" << "!" << endl;
}