aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md
index d0016ee..3bbc5c8 100644
--- a/README.md
+++ b/README.md
@@ -35,3 +35,16 @@ To print `Hello` with a new line
print("Hello\n")
```
+To comment one line you can use C++ style comments
+```felan
+// This is a comment
+print("Hi comment"); // This is another comment
+```
+
+To comment a block you can use C style comments
+```felan
+/* This is a comment */
+/* This is another /* comment but it is /* nested */ */ */
+print("Hi comment"/* Here another one */);
+```
+