diff --git a/README.md b/README.md index 335333b..c42281d 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,6 @@ A very basic LISP implementation with an interpreter and editor written for the [Download the Android app](https://gitlab.com/sagev9000/pebblispandroid/-/wikis/Downloads) to easily type up and send scripts to your Pebble. -# TODO -- Call scripts from scripts -- Call more pebble functions -- Maybe hard-code more built-in functions to ease up on memory use - # Writing in PebbLisp PebbLisp includes several built-ins functionalities. @@ -86,3 +81,8 @@ Each element in the candidate list is compared against the partial condition. If `(fil (< 100) (20 150 30 200))` would return `( 150 200 )`, as no other elements fit the condition `(< 100 n)`. + +# TODO +- Call scripts from scripts +- Call more pebble functions +- Maybe hard-code more built-in functions to ease up on memory use