6 lines
70 B
C++
6 lines
70 B
C++
|
#include <iostream>
|
||
|
|
||
|
void hello() {
|
||
|
std::cout << "Hello World\n";
|
||
|
}
|