aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2024-09-22 19:34:43 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2024-09-22 19:34:43 +0330
commitf79290084948f3cf140395c270c07cf29ca58e8d (patch)
treed716526678782153f3617bbf78984b4c4ebed380 /README.md
parentd2ab53c625d386a4fbc6a9d5a5eb29faab1b3f0c (diff)
Better errors
Added variables
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 46dca81..a624dcb 100644
--- a/README.md
+++ b/README.md
@@ -48,3 +48,16 @@ To comment a block you can use C style comments
print("Hi comment"/* Here another one */);
```
+Identifier symbols are a way to use keywords as identifier
+```felan
+`print`("Hello");
+// This is the same as
+print("Hello");
+```
+
+To define variables you can use : operator
+```felan
+helloVar:String = "hello";
+print(helloVar);
+```
+