9 lines
119 B
C++
9 lines
119 B
C++
#include <iostream>
|
|
using namespace std;
|
|
|
|
// cc:main function
|
|
int main()
|
|
{
|
|
cout << "Hello, World!";
|
|
return 0;
|
|
} |