#ifndef HELLO_HPP #define HELLO_HPP void hello (); #endif
#include <iostream> using namespace std; void hello () { cout << "Hello, world!" << endl; }
#include "hello.hpp" int main () { hello(); return 0; }