Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Commit

Permalink
updated readme example
Browse files Browse the repository at this point in the history
  • Loading branch information
eoussama committed Mar 24, 2024
1 parent 2826c8b commit 04f43f6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 04f43f6

Please sign in to comment.