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