Move TODO to end of file

This commit is contained in:
Sage Vaillancourt 2020-08-03 13:14:51 +00:00
parent 3c6d98cd79
commit 40541fd410
1 changed files with 5 additions and 5 deletions

View File

@ -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