From f79290084948f3cf140395c270c07cf29ca58e8d Mon Sep 17 00:00:00 2001 From: A404M Date: Sun, 22 Sep 2024 19:34:43 +0330 Subject: Better errors Added variables --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'README.md') 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); +``` + -- cgit v1.2.3