From c409b8aaf6b6f63bd68a3356e146ab80b2ec8c4b Mon Sep 17 00:00:00 2001 From: A404M Date: Wed, 25 Sep 2024 19:47:29 +0330 Subject: fixed multiple variable definition bug tried to implement import --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index a624dcb..b07f660 100644 --- a/README.md +++ b/README.md @@ -27,12 +27,12 @@ To run code just send your source file to the program like To print `Hello` with no new line ```felan -print("Hello") +print("Hello"); ``` To print `Hello` with a new line ```felan -print("Hello\n") +print("Hello\n"); ``` To comment one line you can use C++ style comments -- cgit v1.2.3