cmake/Example/Demo/demo.cxx

11 lines
86 B
C++
Raw Normal View History

#include "hello.h"
extern Hello hello;
int main()
{
hello.Print();
2013-03-16 19:13:01 +02:00
return 0;
}