diff options
author | Juan J. Martinez <jjm@usebox.net> | 2024-06-18 16:02:46 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2024-06-18 16:03:12 +0100 |
commit | 96362daa03ca36a94ca7c5939446f772d95229b5 (patch) | |
tree | 3b0f129080b82c894ea808fb5d2e9c22f51806c3 /README.md | |
parent | f766d64e77654adca9d71a9878f6d5739b3954dd (diff) | |
download | funco-96362daa03ca36a94ca7c5939446f772d95229b5.tar.gz funco-96362daa03ca36a94ca7c5939446f772d95229b5.zip |
Improved parsing
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -37,8 +37,7 @@ end A program can have: * line comments, with `#` -* function definitions -* expressions +* function definitions, that contain other function definitions and expressions A `main()` function is required and will be executed as entry point for the program. @@ -62,10 +61,9 @@ Literals include: * strings: `"this is a string"` * booleans (`true` or `false`), as result of some logical functions; although 0 is false and non-zero is true * lists -* functions -* none for "no value" +* `none` for "no value" -Operators are functions, that includes: +Operators are functions, that include: * `+`, `-`, `*`, `/`, `mod` * `>`, `<`, `>=`, `<=`, `=`, `!=` |