diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2024-09-22 19:34:43 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2024-09-22 19:34:43 +0330 |
commit | f79290084948f3cf140395c270c07cf29ca58e8d (patch) | |
tree | d716526678782153f3617bbf78984b4c4ebed380 /README.md | |
parent | d2ab53c625d386a4fbc6a9d5a5eb29faab1b3f0c (diff) |
Better errors
Added variables
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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); +``` + |