12 lines
108 B
C++
12 lines
108 B
C++
#include <iostream>
|
|
#include "hello.h"
|
|
|
|
extern Hello hello;
|
|
|
|
int main()
|
|
{
|
|
hello.Print();
|
|
|
|
return 0;
|
|
}
|