aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2024-09-25 19:47:29 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2024-09-25 19:47:29 +0330
commitc409b8aaf6b6f63bd68a3356e146ab80b2ec8c4b (patch)
tree65ea5801fd910fc6bcff3f2e8f06b5fd7d249c78 /README.md
parentf79290084948f3cf140395c270c07cf29ca58e8d (diff)
fixed multiple variable definition bug
tried to implement import
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