From 5aac3c3f8bcfef0b2aad28d91d87b9ebf1d5e7df Mon Sep 17 00:00:00 2001 From: Oskar Date: Sun, 28 Jul 2024 12:52:38 +0200 Subject: first commit --- comments.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 comments.cpp (limited to 'comments.cpp') diff --git a/comments.cpp b/comments.cpp new file mode 100644 index 0000000..a379c1d --- /dev/null +++ b/comments.cpp @@ -0,0 +1,18 @@ +#include +#include + +/* + * Playing around with comments + * Nothing too important but learned something for sure. + * + */ + +int main (void) { + + std::cout << "/*"; + std::cout << "*/"; + std::cout << /* "*/"*/"; + std::cout << /* "*/" /* "/*" */; + + return 0; +} -- cgit v1.2.3