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