📅  最后修改于: 2022-03-11 14:44:49.125000             🧑  作者: Mango
/*
* First C++ program that says hello (hello.cpp)
*/
#include // Needed to perform IO operations
using namespace std;
int main() { // Program entry point
cout << "hello, world" << endl; // Say Hello
return 0; // Terminate main()
} // End of main function