11 lines
164 B
C++
11 lines
164 B
C++
#include "header.h"
|
|
|
|
#include <iostream>
|
|
using std::cout;
|
|
using std::endl;
|
|
|
|
int main(int argc, char *argv[], char *envp[]) {
|
|
cout << hello() << endl;
|
|
return 0;
|
|
}
|