diff options
Diffstat (limited to 'print/print.cxx')
-rw-r--r-- | print/print.cxx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/print/print.cxx b/print/print.cxx new file mode 100644 index 0000000..99a466d --- /dev/null +++ b/print/print.cxx @@ -0,0 +1,13 @@ +// file: print/print.cxx -*- C++ -*- + +#include <print/print> + +#include <iostream> + +using namespace std; + +void +print (const string& h) +{ + cout << h << endl; +} |