diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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 */); +``` + |