6 lines
89 B
C++
6 lines
89 B
C++
|
#include <iostream>
|
||
|
|
||
|
void say_hello(){
|
||
|
std::cout << "Hello, from newParkManne!\n";
|
||
|
}
|