summaryrefslogtreecommitdiff
path: root/comments.cpp
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-07-28 12:52:38 +0200
committerOskar <[email protected]>2024-07-28 12:52:38 +0200
commit5aac3c3f8bcfef0b2aad28d91d87b9ebf1d5e7df (patch)
tree38736b9f0c57f69e272121e0fc1f3969bb7468e2 /comments.cpp
first commit
Diffstat (limited to 'comments.cpp')
-rw-r--r--comments.cpp18
1 files changed, 18 insertions, 0 deletions
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 <iostream>
+#include <stdio.h>
+
+/*
+ * 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;
+}