diff options
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); +``` + |