aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index a624dcb..b07f660 100644
--- a/README.md
+++ b/README.md
@@ -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