diff options
Diffstat (limited to 'test cases/d/10 d cpp/libfile.cpp')
-rw-r--r-- | test cases/d/10 d cpp/libfile.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test cases/d/10 d cpp/libfile.cpp b/test cases/d/10 d cpp/libfile.cpp new file mode 100644 index 0000000..2ea67fc --- /dev/null +++ b/test cases/d/10 d cpp/libfile.cpp @@ -0,0 +1,5 @@ +#include<iostream> + +void print_hello(int i) { + std::cout << "Hello. Here is a number printed with C++: " << i << ".\n"; +} |