doc updates

This commit is contained in:
VaclavT 2021-02-23 21:30:15 +01:00
parent 393a2418ac
commit b95ad66718
2 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
### BUGS ### BUGS
- see malformed_program - wrong parsing of comments - see malformed_program - wrong parsing of comments - probably comment with "
### TODO ### TODO
- use file suffix .lsp instead of .lisp - use file suffix .lsp instead of .lisp
@ -23,6 +23,7 @@
- readline - readline
- execute system command should capture stderr - execute system command should capture stderr
- add sleep - add sleep
- add built in for and, or
- file functions - file functions
- name it here - name it here
- string functions - string functions
@ -32,7 +33,6 @@
- decode-universal-time - decode-universal-time
- anv function - anv function
- add hash datatype - add hash datatype
- add support for nil
- conversion functions like parse-integer - conversion functions like parse-integer
- list function nth - list function nth
- in test.lisp some explaining prints - in test.lisp some explaining prints

View File

@ -40,6 +40,7 @@
|`(first ..)`||| |`(first ..)`|||
|`(last ..)`||| |`(last ..)`|||
|`(range ..)`||| |`(range ..)`|||
|`(member list item)`|||
|`(map ..)`||| |`(map ..)`|||
|`(filter ..)`|`(filter (lambda (x) (> x 2)) '(1 2 3 4 5)) => (3 4 5)`|| |`(filter ..)`|`(filter (lambda (x) (> x 2)) '(1 2 3 4 5)) => (3 4 5)`||
|`(reduce ..)`||| |`(reduce ..)`|||