diff options
Diffstat (limited to '_posts/snippets/hello.cpp')
-rw-r--r-- | _posts/snippets/hello.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/_posts/snippets/hello.cpp b/_posts/snippets/hello.cpp new file mode 100644 index 0000000..2f96a60 --- /dev/null +++ b/_posts/snippets/hello.cpp @@ -0,0 +1,7 @@ +#include "world.hpp" + +#include <iostream> + +void hello_snippets() { + std::cout << "Hello snippets!\n"; +} |