mirror of
https://github.com/reactos/CMake.git
synced 2024-12-13 22:58:41 +00:00
11 lines
88 B
C++
11 lines
88 B
C++
|
#include "hello.h"
|
||
|
|
||
|
extern Hello hello;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
hello.Print();
|
||
|
|
||
|
return 0;
|
||
|
}
|