diff --git a/Readme.md b/Readme.md index e76aa3b..0ebd7d9 100644 --- a/Readme.md +++ b/Readme.md @@ -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 diff --git a/doc/Doc.md b/doc/Doc.md index f2bef14..ba130c0 100644 --- a/doc/Doc.md +++ b/doc/Doc.md @@ -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 ..)`|||