aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
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);
+```
+