diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -27,12 +27,12 @@ To run code just send your source file to the program like To print `Hello` with no new line ```felan -print("Hello") +print("Hello"); ``` To print `Hello` with a new line ```felan -print("Hello\n") +print("Hello\n"); ``` To comment one line you can use C++ style comments |