From 04f43f60d611b6423f6b5015dd9aba7bf13e7357 Mon Sep 17 00:00:00 2001 From: eoussama Date: Sun, 24 Mar 2024 20:56:46 +0000 Subject: [PATCH] updated readme example --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5bc0504..95069d7 100644 --- a/README.md +++ b/README.md @@ -14,18 +14,18 @@ The following is a typical LangKama script: ```php let me cook factorial(n) { - hear me out val is 0; + hear me out val is 0. big if true (n = 0) { - val is 1; + val is 1. } sike { - val is n * factorial(n - 1); + val is n * factorial(n - 1). } - reda val; + reda val. } -loncina(factorial(5)); bs Outputs: 120 +loncina(factorial(5)). bs Outputs: 120 ``` More examples can be found inside of the [langkama](./langkama/) directory.