9 lines
298 B
C++
9 lines
298 B
C++
#include "main.hpp"
|
|
#include <iostream>
|
|
|
|
///-----------------------------------------------------------------------------
|
|
///-----------------------------------------------------------------------------
|
|
int main (int parArgc, const char* const argv[]) {
|
|
std::cout << "Hello world\n";
|
|
return 0;
|
|
}
|