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

View File

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