diff options
author | Juan J. Martinez <jjm@usebox.net> | 2024-06-18 16:03:31 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2024-06-18 16:03:31 +0100 |
commit | 6567df27bb924d17a41b21ac012d88bfee4cbe34 (patch) | |
tree | 4d0250309f2cd287cf02cf5e7ee864d26aa58b44 /README.md | |
parent | 96362daa03ca36a94ca7c5939446f772d95229b5 (diff) | |
download | funco-6567df27bb924d17a41b21ac012d88bfee4cbe34.tar.gz funco-6567df27bb924d17a41b21ac012d88bfee4cbe34.zip |
Added index function
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -102,6 +102,7 @@ Other built-in functions are: * `drop(n list)`: return the list dropping the n first elements * `display(value)`: prints its arguments to the screen, for example `display("hello" "world")` * `..(i j)`: generate a list of integers from i to j +* `\[](l n)`: get item n in l (n is zero based) See the examples in `./examples`. |