diff options
Diffstat (limited to 'Example/Demo/demo.cxx')
-rw-r--r-- | Example/Demo/demo.cxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Example/Demo/demo.cxx b/Example/Demo/demo.cxx new file mode 100644 index 0000000..f266c6b --- /dev/null +++ b/Example/Demo/demo.cxx @@ -0,0 +1,11 @@ +#include <iostream> +#include "hello.h" + +extern Hello hello; + +int main() +{ + hello.Print(); + + return 0; +} |