10 lines
130 B
C++
10 lines
130 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
static uint32_t SHARED_COUNTER = 0;
|
|
|
|
int main() {
|
|
cout << "Hello World" << endl;
|
|
}
|