aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2024-06-18 16:02:46 +0100
committerJuan J. Martinez <jjm@usebox.net>2024-06-18 16:03:12 +0100
commit96362daa03ca36a94ca7c5939446f772d95229b5 (patch)
tree3b0f129080b82c894ea808fb5d2e9c22f51806c3 /README.md
parentf766d64e77654adca9d71a9878f6d5739b3954dd (diff)
downloadfunco-96362daa03ca36a94ca7c5939446f772d95229b5.tar.gz
funco-96362daa03ca36a94ca7c5939446f772d95229b5.zip
Improved parsing
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 3 insertions, 5 deletions
diff --git a/README.md b/README.md
index fcbb5bd..dd6fb76 100644
--- a/README.md
+++ b/README.md
@@ -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`
* `>`, `<`, `>=`, `<=`, `=`, `!=`