📅  最后修改于: 2022-03-11 14:44:48.081000             🧑  作者: Mango
// hello.cpp: Maggie Johnson
// Description: a program that prints the immortal saying "hello world"
#include
using namespace std;
int main() {
cout << "Hello World!" << endl;
return 0;
}