mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-22 23:50:32 +00:00
10 lines
108 B
C++
10 lines
108 B
C++
|
|
#include <iostream>
|
||
|
|
|
||
|
|
using namespace std;
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
cout << "Hello World!" << endl;
|
||
|
|
return 0;
|
||
|
|
}
|